diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-10-07 02:39:13 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2014-10-07 02:39:13 +0000 |
| commit | 48d4e4dd3582e9b480a1969cb554437f071b57bc (patch) | |
| tree | 18617f04bae1630f3af5946c4d1c99969c8618ca /compiler-rt/lib/builtins/arm/clzsi2.S | |
| parent | 59cca5dc2976cb16693fb3b7dfa7aee576837501 (diff) | |
| download | bcm5719-llvm-48d4e4dd3582e9b480a1969cb554437f071b57bc.tar.gz bcm5719-llvm-48d4e4dd3582e9b480a1969cb554437f071b57bc.zip | |
builtins: rework use of DEFINE_COMPILERRT_THUMB_FUNCTION
This is simply to help clarity of the code. The functions are built as thumb
only if Thumb2 is available (__ARM_ARCH_ISA_THUMB == 2). Sink the selection
into the location of the definition and make DEFINE_COMPILERRT_THUMB_FUNCTION
always define a thumb function while DEFINE_COMPILERRT_FUNCTION always selects
the default.
Since the .thumb_func directive is always available (at least on Linux, Windows,
and BSD), sinking the macro right into the macro works just as well.
No functional change intended.
llvm-svn: 219182
Diffstat (limited to 'compiler-rt/lib/builtins/arm/clzsi2.S')
| -rw-r--r-- | compiler-rt/lib/builtins/arm/clzsi2.S | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/compiler-rt/lib/builtins/arm/clzsi2.S b/compiler-rt/lib/builtins/arm/clzsi2.S index da8b2f949a0..1cd379bfb0a 100644 --- a/compiler-rt/lib/builtins/arm/clzsi2.S +++ b/compiler-rt/lib/builtins/arm/clzsi2.S @@ -20,7 +20,11 @@ #endif .p2align 2 +#if __ARM_ARCH_ISA_THUMB == 2 DEFINE_COMPILERRT_THUMB_FUNCTION(__clzsi2) +#else +DEFINE_COMPILERRT_FUNCTION(__clzsi2) +#endif #ifdef __ARM_FEATURE_CLZ clz r0, r0 JMP(lr) |

