forked from OSchip/llvm-project
[X86] Move AVX512VPOPCNTDQ in __builtin_cpu_support's enum to match trunk gcc.
There are two other features before it that we don't currently support in the the frontend or backend so I left placeholders to keep the encoding correct. I think the compiler-rt implementation of this feature is even further out of date. llvm-svn: 307456
This commit is contained in:
parent
af10ea2055
commit
e1ba5a3132
|
@ -7335,6 +7335,8 @@ Value *CodeGenFunction::EmitX86BuiltinExpr(unsigned BuiltinID,
|
|||
AVX512PF,
|
||||
AVX512VBMI,
|
||||
AVX512IFMA,
|
||||
AVX5124VNNIW, // TODO implement this fully
|
||||
AVX5124FMAPS, // TODO implement this fully
|
||||
AVX512VPOPCNTDQ,
|
||||
MAX
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue