[PGO] Fix the build failures due to 253483 and 253489.

llvm-svn: 253492
This commit is contained in:
Betul Buyukkurt 2015-11-18 19:39:20 +00:00
parent a52e2c8376
commit e7891d033e
1 changed files with 2 additions and 4 deletions

View File

@ -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__)