diff options
author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-10-07 03:00:17 +0000 |
---|---|---|
committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-10-07 03:00:17 +0000 |
commit | 11d42c1ca09583ff575baa70639173687104a605 (patch) | |
tree | 84dfc9424dfbbcca50556a84f84bf1ebf74f3e3c /lib/builtins/assembly.h | |
parent | d87d6b7cab967c9b871dd05d0ccdcf60efd80ce1 (diff) | |
download | compiler-rt-11d42c1ca09583ff575baa70639173687104a605.tar.gz |
builtins: add missed change from previous commit
The macro rework was missing a trailing SEPARATOR for the .thumb_func, resulting
in assembly failures.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@219183 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/builtins/assembly.h')
-rw-r--r-- | lib/builtins/assembly.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/builtins/assembly.h b/lib/builtins/assembly.h index 3b0da228d..8688a9bb0 100644 --- a/lib/builtins/assembly.h +++ b/lib/builtins/assembly.h @@ -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) \ |