forked from OSchip/llvm-project
[X86] Add 'movbe' to btver2 CPU.
This probably doesn't change anything because the frotend doesn't do anything with this feature and the backend will infer from the cpu string. So this is just for consistency with other cpus that support movbe. llvm-svn: 308002
This commit is contained in:
parent
f80ffa1a78
commit
3544b3e501
|
@ -3401,6 +3401,7 @@ bool X86TargetInfo::initFeatureMap(
|
|||
setFeatureEnabledImpl(Features, "bmi", true);
|
||||
setFeatureEnabledImpl(Features, "f16c", true);
|
||||
setFeatureEnabledImpl(Features, "xsaveopt", true);
|
||||
setFeatureEnabledImpl(Features, "movbe", true);
|
||||
LLVM_FALLTHROUGH;
|
||||
case CK_BTVER1:
|
||||
setFeatureEnabledImpl(Features, "ssse3", true);
|
||||
|
|
Loading…
Reference in New Issue