diff options
| author | Dale Johannesen <dalej@apple.com> | 2008-02-15 01:22:41 +0000 |
|---|---|---|
| committer | Dale Johannesen <dalej@apple.com> | 2008-02-15 01:22:41 +0000 |
| commit | 401a4d72d5cf6cbb4845025cdd298d50e6cda5fa (patch) | |
| tree | 5d1c42f8c75e0777f6af8ca43e69a1fea70e457f /llvm | |
| parent | 1dd86b1154b1d23f9a8f70b59386d92a5cfea143 (diff) | |
| download | bcm5719-llvm-401a4d72d5cf6cbb4845025cdd298d50e6cda5fa.tar.gz bcm5719-llvm-401a4d72d5cf6cbb4845025cdd298d50e6cda5fa.zip | |
nocona, core2 and penryn support 64 bit.
llvm-svn: 47149
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/lib/Target/X86/X86.td | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/llvm/lib/Target/X86/X86.td b/llvm/lib/Target/X86/X86.td index 9347310ef3d..db1418fedb7 100644 --- a/llvm/lib/Target/X86/X86.td +++ b/llvm/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]>; |

