[compiler-rt] r253489 - [PGO] Removed an extra ')' in the LLVM_ALIGNAS(x) macro.

Betul Buyukkurt via llvm-commits llvm-commits at lists.llvm.org
Wed Nov 18 11:11:31 PST 2015


Author: betulb
Date: Wed Nov 18 13:11:31 2015
New Revision: 253489

URL: http://llvm.org/viewvc/llvm-project?rev=253489&view=rev
Log:
[PGO] Removed an extra ')' in the LLVM_ALIGNAS(x) macro.


Modified:
    compiler-rt/trunk/lib/profile/InstrProfiling.h

Modified: compiler-rt/trunk/lib/profile/InstrProfiling.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfiling.h?rev=253489&r1=253488&r2=253489&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfiling.h (original)
+++ compiler-rt/trunk/lib/profile/InstrProfiling.h Wed Nov 18 13:11:31 2015
@@ -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




More information about the llvm-commits mailing list