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 | 2cf5d829838d26219511defc344e9d8af76443be (patch) | |
tree | 8240336f89c83b472b5840832e74e001b8882b23 /compiler-rt/lib/builtins/assembly.h | |
parent | 48d4e4dd3582e9b480a1969cb554437f071b57bc (diff) | |
download | bcm5719-llvm-2cf5d829838d26219511defc344e9d8af76443be.tar.gz bcm5719-llvm-2cf5d829838d26219511defc344e9d8af76443be.zip |
builtins: add missed change from previous commit
The macro rework was missing a trailing SEPARATOR for the .thumb_func, resulting
in assembly failures.
llvm-svn: 219183
Diffstat (limited to 'compiler-rt/lib/builtins/assembly.h')
-rw-r--r-- | compiler-rt/lib/builtins/assembly.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler-rt/lib/builtins/assembly.h b/compiler-rt/lib/builtins/assembly.h index 3b0da228d81..8688a9bb04c 100644 --- a/compiler-rt/lib/builtins/assembly.h +++ b/compiler-rt/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) \ |