[PGO] Removed an extra ')' in the LLVM_ALIGNAS(x) macro.

llvm-svn: 253489
This commit is contained in:
Betul Buyukkurt 2015-11-18 19:11:31 +00:00
parent ca922bb9b9
commit b8dc674f65
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@
#ifdef _MSC_VER
# define LLVM_ALIGNAS(x) __declspec(align(x))
#elif __GNUC__ && !__has_feature(cxx_alignas)
# define LLVM_ALIGNAS(x) __attribute__((aligned(x)))
# define LLVM_ALIGNAS(x) __attribute__((aligned(x))
#else
# define LLVM_ALIGNAS(x) alignas(x)
#endif