diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2011-08-25 18:05:56 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2011-08-25 18:05:56 +0000 |
commit | 5a122f37fe0f5bcb6867fed3628e898d3cb15b0e (patch) | |
tree | d11b70c13c97afea218b0ba26057ad5833928dcc /llvm/lib/Support/Host.cpp | |
parent | 14f771695a0e9a8d80d0da24d45a8f9ba0c4ae4c (diff) | |
download | bcm5719-llvm-5a122f37fe0f5bcb6867fed3628e898d3cb15b0e.tar.gz bcm5719-llvm-5a122f37fe0f5bcb6867fed3628e898d3cb15b0e.zip |
Intel family 6 model 44 is Gulftown/Westmere-EP and doesn't have AVX.
llvm-svn: 138573
Diffstat (limited to 'llvm/lib/Support/Host.cpp')
-rw-r--r-- | llvm/lib/Support/Host.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Support/Host.cpp b/llvm/lib/Support/Host.cpp index c525a122812..a19e4b41189 100644 --- a/llvm/lib/Support/Host.cpp +++ b/llvm/lib/Support/Host.cpp @@ -213,13 +213,13 @@ std::string sys::getHostCPUName() { 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"; |