[llvm-commits] [llvm] r138573 - /llvm/trunk/lib/Support/Host.cpp

Benjamin Kramer benny.kra at googlemail.com
Thu Aug 25 11:05:56 PDT 2011


Author: d0k
Date: Thu Aug 25 13:05:56 2011
New Revision: 138573

URL: http://llvm.org/viewvc/llvm-project?rev=138573&view=rev
Log:
Intel family 6 model 44 is Gulftown/Westmere-EP and doesn't have AVX.

Modified:
    llvm/trunk/lib/Support/Host.cpp

Modified: llvm/trunk/lib/Support/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/Host.cpp?rev=138573&r1=138572&r2=138573&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Host.cpp (original)
+++ llvm/trunk/lib/Support/Host.cpp Thu Aug 25 13:05:56 2011
@@ -213,13 +213,13 @@
       case 30: // Intel(R) Core(TM) i7 CPU         870  @ 2.93GHz.
                // As found in a Summer 2010 model iMac.
       case 37: // Intel Core i7, laptop version.
+      case 44: // Intel Core i7 processor and Intel Xeon processor. All
+               // processors are manufactured using the 32 nm process.
         return "corei7";
 
       // SandyBridge:
       case 42: // Intel Core i7 processor. All processors are manufactured
                // using the 32 nm process.
-      case 44: // Intel Core i7 processor and Intel Xeon processor. All
-               // processors are manufactured using the 32 nm process.
       case 45:
         return "corei7-avx";
 





More information about the llvm-commits mailing list