[llvm-commits] [llvm] r47149 - /llvm/trunk/lib/Target/X86/X86.td
Dale Johannesen
dalej at apple.com
Thu Feb 14 17:22:41 PST 2008
Author: johannes
Date: Thu Feb 14 19:22:41 2008
New Revision: 47149
URL: http://llvm.org/viewvc/llvm-project?rev=47149&view=rev
Log:
nocona, core2 and penryn support 64 bit.
Modified:
llvm/trunk/lib/Target/X86/X86.td
Modified: llvm/trunk/lib/Target/X86/X86.td
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86.td?rev=47149&r1=47148&r2=47149&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86.td (original)
+++ llvm/trunk/lib/Target/X86/X86.td Thu Feb 14 19:22:41 2008
@@ -70,9 +70,9 @@
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]>;
More information about the llvm-commits
mailing list