[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:
Craig Topper 2017-07-19 22:58:58 +00:00
parent e00ffbcbc4
commit 9377b9fa69
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}