[compiler-rt] r219183 - builtins: add missed change from previous commit

Saleem Abdulrasool compnerd at compnerd.org
Mon Oct 6 20:00:17 PDT 2014


Author: compnerd
Date: Mon Oct  6 22:00:17 2014
New Revision: 219183

URL: http://llvm.org/viewvc/llvm-project?rev=219183&view=rev
Log:
builtins: add missed change from previous commit

The macro rework was missing a trailing SEPARATOR for the .thumb_func, resulting
in assembly failures.

Modified:
    compiler-rt/trunk/lib/builtins/assembly.h

Modified: compiler-rt/trunk/lib/builtins/assembly.h
URL: http://llvm.org/viewvc/llvm-project/compiler-rt/trunk/lib/builtins/assembly.h?rev=219183&r1=219182&r2=219183&view=diff
==============================================================================
--- compiler-rt/trunk/lib/builtins/assembly.h (original)
+++ compiler-rt/trunk/lib/builtins/assembly.h Mon Oct  6 22:00:17 2014
@@ -108,7 +108,7 @@
   .globl SYMBOL_NAME(name) SEPARATOR                                           \
   SYMBOL_IS_FUNC(SYMBOL_NAME(name)) SEPARATOR                                  \
   DECLARE_SYMBOL_VISIBILITY(name) SEPARATOR                                    \
-  .thumb_func                                                                  \
+  .thumb_func SEPARATOR                                                        \
   SYMBOL_NAME(name):
 
 #define DEFINE_COMPILERRT_PRIVATE_FUNCTION(name)                               \





More information about the llvm-commits mailing list