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

Evan Cheng evan.cheng at apple.com
Mon Apr 23 15:41:39 PDT 2012


Author: evancheng
Date: Mon Apr 23 17:41:39 2012
New Revision: 155402

URL: http://llvm.org/viewvc/llvm-project?rev=155402&view=rev
Log:
Add a missing cpu subtype.

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=155402&r1=155401&r2=155402&view=diff
==============================================================================
--- llvm/trunk/lib/Support/Host.cpp (original)
+++ llvm/trunk/lib/Support/Host.cpp Mon Apr 23 17:41:39 2012
@@ -230,6 +230,10 @@
       case 45:
         return "corei7-avx";
 
+      // Ivy Bridge:
+      case 58:
+        return "core-avx-i";
+
       case 28: // Intel Atom processor. All processors are manufactured using
                // the 45 nm process
         return "atom";





More information about the llvm-commits mailing list