[compiler-rt] r255938 - Fix typo in MSC path

Xinliang David Li via llvm-commits llvm-commits at lists.llvm.org
Thu Dec 17 15:37:30 PST 2015


Author: davidxl
Date: Thu Dec 17 17:37:30 2015
New Revision: 255938

URL: http://llvm.org/viewvc/llvm-project?rev=255938&view=rev
Log:
Fix typo in MSC path

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

Modified: compiler-rt/trunk/lib/profile/InstrProfilingPort.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/profile/InstrProfilingPort.h?rev=255938&r1=255937&r2=255938&view=diff
==============================================================================
--- compiler-rt/trunk/lib/profile/InstrProfilingPort.h (original)
+++ compiler-rt/trunk/lib/profile/InstrProfilingPort.h Thu Dec 17 17:37:30 2015
@@ -11,7 +11,7 @@
 #define PROFILE_INSTRPROFILING_PORT_H_
 
 #ifdef _MSC_VER
-#define COMPILER_RTLIGNAS(x) __declspec(align(x))
+#define COMPILER_RT_ALIGNAS(x) __declspec(align(x))
 #define COMPILER_RT_VISIBILITY
 #define COMPILER_RT_WEAK __declspec(selectany)
 #elif __GNUC__




More information about the llvm-commits mailing list