diff options
| author | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-06-03 17:08:13 +0000 |
|---|---|---|
| committer | Saleem Abdulrasool <compnerd@compnerd.org> | 2019-06-03 17:08:13 +0000 |
| commit | aad5d518823b5be988768a629f13cbe14a6e8b5d (patch) | |
| tree | 6b4d08ab27fc538e20ca8af28a4614c26c4f18ca /compiler-rt/lib/builtins | |
| parent | 26c43d0ef8e528020b9567e415572fecb3b1859e (diff) | |
| download | bcm5719-llvm-aad5d518823b5be988768a629f13cbe14a6e8b5d.tar.gz bcm5719-llvm-aad5d518823b5be988768a629f13cbe14a6e8b5d.zip | |
builtins: correct function name for AEABI
If `COMPILER_RT_ARMHF_TARGET` is set , the definition of the AEABI runtime
function `__aeabi_fcmpun` is misspelt: `__aeabi_fcmpum` instead of
`__aeabi_fcmpun`.
Patch by Konstantin Schwarz!
llvm-svn: 362424
Diffstat (limited to 'compiler-rt/lib/builtins')
| -rw-r--r-- | compiler-rt/lib/builtins/arm/comparesf2.S | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/builtins/arm/comparesf2.S b/compiler-rt/lib/builtins/arm/comparesf2.S index a87cadf1b98..24b85d2fee1 100644 --- a/compiler-rt/lib/builtins/arm/comparesf2.S +++ b/compiler-rt/lib/builtins/arm/comparesf2.S @@ -248,11 +248,11 @@ DEFINE_COMPILERRT_FUNCTION(__unordsf2) END_COMPILERRT_FUNCTION(__unordsf2) #if defined(COMPILER_RT_ARMHF_TARGET) -DEFINE_COMPILERRT_FUNCTION(__aeabi_fcmpum) +DEFINE_COMPILERRT_FUNCTION(__aeabi_fcmpun) vmov s0, r0 vmov s1, r1 b SYMBOL_NAME(__unordsf2) -END_COMPILERRT_FUNCTION(__aeabi_fcmpum) +END_COMPILERRT_FUNCTION(__aeabi_fcmpun) #else DEFINE_AEABI_FUNCTION_ALIAS(__aeabi_fcmpun, __unordsf2) #endif |

