[llvm-commits] [llvm] r88818 - /llvm/trunk/lib/System/Host.cpp
Daniel Dunbar
daniel at zuster.org
Sat Nov 14 14:04:43 PST 2009
Author: ddunbar
Date: Sat Nov 14 16:04:42 2009
New Revision: 88818
URL: http://llvm.org/viewvc/llvm-project?rev=88818&view=rev
Log:
Remove bogus corei7 and atom entries, the family was incorrect.
Modified:
llvm/trunk/lib/System/Host.cpp
Modified: llvm/trunk/lib/System/Host.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/System/Host.cpp?rev=88818&r1=88817&r2=88818&view=diff
==============================================================================
--- llvm/trunk/lib/System/Host.cpp (original)
+++ llvm/trunk/lib/System/Host.cpp Sat Nov 14 16:04:42 2009
@@ -243,10 +243,6 @@
// 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";
}
More information about the llvm-commits
mailing list