OSDN Git Service

Later models likely to have Yonah like attributes.
authorEvan Cheng <evan.cheng@apple.com>
Fri, 16 Jun 2006 21:58:49 +0000 (21:58 +0000)
committerEvan Cheng <evan.cheng@apple.com>
Fri, 16 Jun 2006 21:58:49 +0000 (21:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28843 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Target/X86/X86Subtarget.cpp

index cafa09c..2c2acec 100644 (file)
@@ -90,7 +90,8 @@ static const char *GetCurrentX86CPU() {
         case 9:
         case 13: return "pentium-m";
         case 14: return "yonah";
-        default: return "i686";
+        default:
+          return (Model > 14) ? "yonah" : "i686";
         }
       case 15: {
         switch (Model) {