diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2012-09-26 18:21:47 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2012-09-26 18:21:47 +0000 |
commit | 4335e3495d5cd6784a99749879114caf22b9d398 (patch) | |
tree | 809187ad92b3d3d6289dd44dac6a935f7cfc27ab /lib/Support/Host.cpp | |
parent | 44401b7c80f334b4bbe5537fd28ed9da471e2c27 (diff) |
Add support for detecting some corei7-class Xeons.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164714 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support/Host.cpp')
-rw-r--r-- | lib/Support/Host.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/Support/Host.cpp b/lib/Support/Host.cpp index a13b9e2f87..9ee3f2db92 100644 --- a/lib/Support/Host.cpp +++ b/lib/Support/Host.cpp @@ -234,6 +234,8 @@ std::string sys::getHostCPUName() { 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. + case 46: // Nehalem EX + case 47: // Westmere EX return "corei7"; // SandyBridge: |