aboutsummaryrefslogtreecommitdiffstats
path: root/lib/System
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-11-14 22:04:42 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-11-14 22:04:42 +0000
commitbfa092958393ec621767771f9f168e7ff973a179 (patch)
tree9042a51fe40c6c722f8b0681ea2783bb06189e8b /lib/System
parente11d26b3d88930fb41ebbc1cd8d7a3179ade90ae (diff)
downloadexternal_llvm-bfa092958393ec621767771f9f168e7ff973a179.zip
external_llvm-bfa092958393ec621767771f9f168e7ff973a179.tar.gz
external_llvm-bfa092958393ec621767771f9f168e7ff973a179.tar.bz2
Remove bogus corei7 and atom entries, the family was incorrect.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@88818 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/System')
-rw-r--r--lib/System/Host.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/System/Host.cpp b/lib/System/Host.cpp
index b5d2a91..0faf8fe 100644
--- a/lib/System/Host.cpp
+++ b/lib/System/Host.cpp
@@ -243,10 +243,6 @@ std::string sys::getHostCPUName() {
// and manufactured using the 65 nm process.
return (Em64T) ? "nocona" : "prescott";
- // FIXME: Are these bogus?
- case 26: return "corei7";
- case 28: return "atom";
-
default:
return (Em64T) ? "x86-64" : "pentium4";
}