[X86] Move the include of clzerointrin.h from immintrin.h back to x86intrin.h.

This is an AMD intrinsic not an Intel intrinsic so it shouldn't be in immintrin.h

llvm-svn: 333124
This commit is contained in:
Craig Topper 2018-05-23 21:04:26 +00:00
parent 83bdfe5e51
commit 3e7d8dfae3
2 changed files with 5 additions and 4 deletions

View File

@ -347,10 +347,6 @@ _writegsbase_u64(unsigned long long __V)
#include <rdseedintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__CLZERO__)
#include <clzerointrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__WBNOINVD__)
#include <wbnoinvdintrin.h>
#endif

View File

@ -60,4 +60,9 @@
#include <mwaitxintrin.h>
#endif
#if !defined(_MSC_VER) || __has_feature(modules) || defined(__CLZERO__)
#include <clzerointrin.h>
#endif
#endif /* __X86INTRIN_H */