forked from OSchip/llvm-project
all 64-bit cpus have cmov, this should fix CodeGen/X86/cmov.ll
(at least) on non-x86 builders. llvm-svn: 98520
This commit is contained in:
parent
cabfdb1e67
commit
77f7dba60c
|
@ -55,7 +55,8 @@ def Feature3DNowA : SubtargetFeature<"3dnowa", "X863DNowLevel", "ThreeDNowA",
|
|||
// feature, because SSE2 can be disabled (e.g. for compiling OS kernels)
|
||||
// without disabling 64-bit mode.
|
||||
def Feature64Bit : SubtargetFeature<"64bit", "HasX86_64", "true",
|
||||
"Support 64-bit instructions">;
|
||||
"Support 64-bit instructions",
|
||||
[FeatureCMOV]>;
|
||||
def FeatureSlowBTMem : SubtargetFeature<"slow-bt-mem", "IsBTMemSlow", "true",
|
||||
"Bit testing of memory is slow">;
|
||||
def FeatureSSE4A : SubtargetFeature<"sse4a", "HasSSE4A", "true",
|
||||
|
|
Loading…
Reference in New Issue