mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-15 07:34:33 +00:00
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
This commit is contained in:
parent
9f3f40f6ef
commit
2c0575f2f4
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user