forked from OSchip/llvm-project
[X86] Put avx512vpopcntdq in the right spot in the validateCpuSupports string switch.
The validateCpuSupports switch is in the order of the enum defined in CGBuiltin.cpp and libgcc/compiler-rt. llvm-svn: 308546
This commit is contained in:
parent
e00ffbcbc4
commit
9377b9fa69
|
@ -4414,11 +4414,11 @@ bool X86TargetInfo::validateCpuSupports(StringRef FeatureStr) const {
|
|||
.Case("avx512bw", true)
|
||||
.Case("avx512dq", true)
|
||||
.Case("avx512cd", true)
|
||||
.Case("avx512vpopcntdq", true)
|
||||
.Case("avx512er", true)
|
||||
.Case("avx512pf", true)
|
||||
.Case("avx512vbmi", true)
|
||||
.Case("avx512ifma", true)
|
||||
.Case("avx512vpopcntdq", true)
|
||||
.Default(false);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue