diff options
-rw-r--r-- | compiler-rt/lib/profile/InstrProfiling.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/profile/InstrProfiling.h b/compiler-rt/lib/profile/InstrProfiling.h index 15a25abe98f..72a6e671eba 100644 --- a/compiler-rt/lib/profile/InstrProfiling.h +++ b/compiler-rt/lib/profile/InstrProfiling.h @@ -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 |