diff options
author | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-05-03 03:42:50 +0000 |
---|---|---|
committer | Michael J. Spencer <bigcheesegs@gmail.com> | 2011-05-03 03:42:50 +0000 |
commit | 9973738b65130daceaf02b4d09e4cde27d2572c9 (patch) | |
tree | e00571181847addadcd30e34f481ba3e398d695c | |
parent | 9c10d0a3cec64c0291e5891a1cd910db6d638de0 (diff) | |
download | bcm5719-llvm-9973738b65130daceaf02b4d09e4cde27d2572c9.tar.gz bcm5719-llvm-9973738b65130daceaf02b4d09e4cde27d2572c9.zip |
Add pentium{3,4}m cpus. Patch by Alexander Best!
llvm-svn: 130749
-rw-r--r-- | llvm/lib/Target/X86/X86.td | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/Target/X86/X86.td b/llvm/lib/Target/X86/X86.td index 25b8d3ea1d2..f9fd4eb83de 100644 --- a/llvm/lib/Target/X86/X86.td +++ b/llvm/lib/Target/X86/X86.td @@ -101,8 +101,10 @@ def : Proc<"i686", []>; 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]>; |