summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86Subtarget.cpp
diff options
context:
space:
mode:
authorPreston Gurd <preston.gurd@intel.com>2012-07-19 19:05:37 +0000
committerPreston Gurd <preston.gurd@intel.com>2012-07-19 19:05:37 +0000
commitfd012b2e040ad0335c5163e85fbee4869328ad14 (patch)
tree161dec18d61c8a62c903e45f938a332407a1f565 /lib/Target/X86/X86Subtarget.cpp
parent5b50701b1cebe3b3589f22f76bff2d9fc1601581 (diff)
downloadllvm-fd012b2e040ad0335c5163e85fbee4869328ad14.tar.gz
llvm-fd012b2e040ad0335c5163e85fbee4869328ad14.tar.bz2
llvm-fd012b2e040ad0335c5163e85fbee4869328ad14.tar.xz
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/Target/X86/X86Subtarget.cpp')
-rw-r--r--lib/Target/X86/X86Subtarget.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp
index 6ceacc898e..e6e9c56114 100644
--- a/lib/Target/X86/X86Subtarget.cpp
+++ b/lib/Target/X86/X86Subtarget.cpp
@@ -255,7 +255,7 @@ void X86Subtarget::AutoDetectSubtargetFeatures() {
// Set processor type. Currently only Atom is detected.
if (Family == 6 &&
(Model == 28 || Model == 38 || Model == 39
- /*|| Model == 53 || Model == 54*/)) {
+ || Model == 53 || Model == 54)) {
X86ProcFamily = IntelAtom;
UseLeaForSP = true;