aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Target
diff options
context:
space:
mode:
authorDale Johannesen <dalej@apple.com>2008-02-15 01:22:41 +0000
committerDale Johannesen <dalej@apple.com>2008-02-15 01:22:41 +0000
commita5b0c083188b55c31a5be69b3501d33c6d95f7cc (patch)
tree36921c8a498e0ebb668363ecf579caa10bb806b3 /lib/Target
parentbfd482d0f50cdb19e0127e582d9780e1c15f7882 (diff)
downloadexternal_llvm-a5b0c083188b55c31a5be69b3501d33c6d95f7cc.zip
external_llvm-a5b0c083188b55c31a5be69b3501d33c6d95f7cc.tar.gz
external_llvm-a5b0c083188b55c31a5be69b3501d33c6d95f7cc.tar.bz2
nocona, core2 and penryn support 64 bit.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47149 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target')
-rw-r--r--lib/Target/X86/X86.td6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Target/X86/X86.td b/lib/Target/X86/X86.td
index 9347310..db1418f 100644
--- a/lib/Target/X86/X86.td
+++ b/lib/Target/X86/X86.td
@@ -70,9 +70,9 @@ def : Proc<"pentium4", [FeatureSSE2]>;
def : Proc<"x86-64", [Feature64Bit]>;
def : Proc<"yonah", [FeatureSSE3]>;
def : Proc<"prescott", [FeatureSSE3]>;
-def : Proc<"nocona", [FeatureSSE3]>;
-def : Proc<"core2", [FeatureSSSE3]>;
-def : Proc<"penryn", [FeatureSSE41]>;
+def : Proc<"nocona", [FeatureSSE3, Feature64Bit]>;
+def : Proc<"core2", [FeatureSSSE3, Feature64Bit]>;
+def : Proc<"penryn", [FeatureSSE41, Feature64Bit]>;
def : Proc<"k6", [FeatureMMX]>;
def : Proc<"k6-2", [FeatureMMX, Feature3DNow]>;