[llvm-commits] [llvm] r130749 - /llvm/trunk/lib/Target/X86/X86.td
Michael J. Spencer
bigcheesegs at gmail.com
Mon May 2 20:42:50 PDT 2011
Author: mspencer
Date: Mon May 2 22:42:50 2011
New Revision: 130749
URL: http://llvm.org/viewvc/llvm-project?rev=130749&view=rev
Log:
Add pentium{3,4}m cpus. Patch by Alexander Best!
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=130749&r1=130748&r2=130749&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86.td (original)
+++ llvm/trunk/lib/Target/X86/X86.td Mon May 2 22:42:50 2011
@@ -101,8 +101,10 @@
def : Proc<"pentiumpro", [FeatureCMOV]>;
def : Proc<"pentium2", [FeatureMMX, FeatureCMOV]>;
def : Proc<"pentium3", [FeatureSSE1]>;
+def : Proc<"pentium3m", [FeatureSSE1, FeatureSlowBTMem]>;
def : Proc<"pentium-m", [FeatureSSE2, FeatureSlowBTMem]>;
def : Proc<"pentium4", [FeatureSSE2]>;
+def : Proc<"pentium4m", [FeatureSSE2, FeatureSlowBTMem]>;
def : Proc<"x86-64", [FeatureSSE2, Feature64Bit, FeatureSlowBTMem]>;
def : Proc<"yonah", [FeatureSSE3, FeatureSlowBTMem]>;
def : Proc<"prescott", [FeatureSSE3, FeatureSlowBTMem]>;
More information about the llvm-commits
mailing list