diff options
author | Preston Gurd <preston.gurd@intel.com> | 2012-07-19 19:05:37 +0000 |
---|---|---|
committer | Preston Gurd <preston.gurd@intel.com> | 2012-07-19 19:05:37 +0000 |
commit | fd012b2e040ad0335c5163e85fbee4869328ad14 (patch) | |
tree | 161dec18d61c8a62c903e45f938a332407a1f565 /lib/Support | |
parent | 5b50701b1cebe3b3589f22f76bff2d9fc1601581 (diff) | |
download | external_llvm-fd012b2e040ad0335c5163e85fbee4869328ad14.zip external_llvm-fd012b2e040ad0335c5163e85fbee4869328ad14.tar.gz external_llvm-fd012b2e040ad0335c5163e85fbee4869328ad14.tar.bz2 |
Adds the family codes for the Midview Atom processors so that the
Atom buildbot will auto-detect Atom.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160521 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Support')
-rw-r--r-- | lib/Support/Host.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/Support/Host.cpp b/lib/Support/Host.cpp index 367ab6b..9a2c39d 100644 --- a/lib/Support/Host.cpp +++ b/lib/Support/Host.cpp @@ -249,9 +249,8 @@ std::string sys::getHostCPUName() { case 28: // Most 45 nm Intel Atom processors case 38: // 45 nm Atom Lincroft case 39: // 32 nm Atom Medfield - // re-enable when buildbot will pass all atom tests - //case 53: // 32 nm Atom Midview - //case 54: // 32 nm Atom Midview + case 53: // 32 nm Atom Midview + case 54: // 32 nm Atom Midview return "atom"; default: return (Em64T) ? "x86-64" : "i686"; |