From: Chandler Carruth Date: Mon, 10 Dec 2012 18:22:40 +0000 (+0000) Subject: Fix a typo in my previous commit -- bloomfield is 0x1A not 0x2A. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=2c0575f2f4ce9a2db1472ee9d17aff1b0b658960;p=oota-llvm.git Fix a typo in my previous commit -- bloomfield is 0x1A not 0x2A. Thanks to the PaX folks for noticing in review! We need some tests here, any sugestions welcome... git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169739 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86Subtarget.cpp b/lib/Target/X86/X86Subtarget.cpp index bdce4d0221b..b4d554a64e6 100644 --- a/lib/Target/X86/X86Subtarget.cpp +++ b/lib/Target/X86/X86Subtarget.cpp @@ -240,7 +240,7 @@ void X86Subtarget::AutoDetectSubtargetFeatures() { if (IsIntel && ((Family == 6 && Model == 0x1E) || // Nehalem: Clarksfield, Lynnfield, // Jasper Froest - (Family == 6 && Model == 0x2A) || // Nehalem: Bloomfield, Nehalem-EP + (Family == 6 && Model == 0x1A) || // Nehalem: Bloomfield, Nehalem-EP (Family == 6 && Model == 0x2E) || // Nehalem: Nehalem-EX (Family == 6 && Model == 0x25) || // Westmere: Arrandale, Clarksdale (Family == 6 && Model == 0x2C) || // Westmere: Gulftown, Westmere-EP