forked from OSchip/llvm-project
[PGO] Fix the build failures due to 253483 and 253489.
llvm-svn: 253492
This commit is contained in:
parent
a52e2c8376
commit
e7891d033e
|
@ -12,10 +12,8 @@
|
|||
|
||||
#ifdef _MSC_VER
|
||||
# define LLVM_ALIGNAS(x) __declspec(align(x))
|
||||
#elif __GNUC__ && !__has_feature(cxx_alignas)
|
||||
# define LLVM_ALIGNAS(x) __attribute__((aligned(x))
|
||||
#else
|
||||
# define LLVM_ALIGNAS(x) alignas(x)
|
||||
#elif __GNUC__
|
||||
# define LLVM_ALIGNAS(x) __attribute__((aligned(x)))
|
||||
#endif
|
||||
|
||||
#if defined(__FreeBSD__) && defined(__i386__)
|
||||
|
|
Loading…
Reference in New Issue