From: Dale Johannesen Date: Fri, 15 Feb 2008 01:22:41 +0000 (+0000) Subject: nocona, core2 and penryn support 64 bit. X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=b4c9a687eb8fd98f66ce04415f2fb6ca833e4d3a;p=oota-llvm.git nocona, core2 and penryn support 64 bit. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@47149 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Target/X86/X86.td b/lib/Target/X86/X86.td index 9347310ef3d..db1418fedb7 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]>;