diff options
Diffstat (limited to 'lib/fixunssfdi.c')
-rw-r--r-- | lib/fixunssfdi.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/fixunssfdi.c b/lib/fixunssfdi.c index 3b1bc4af948f5..150642045bdc7 100644 --- a/lib/fixunssfdi.c +++ b/lib/fixunssfdi.c @@ -11,9 +11,9 @@ * * ===----------------------------------------------------------------------=== */ +#include "abi.h" #include "int_lib.h" - /* Returns: convert a to a unsigned long long, rounding toward zero. * Negative values all become zero. */ @@ -26,7 +26,9 @@ /* seee eeee emmm mmmm mmmm mmmm mmmm mmmm */ -du_int +ARM_EABI_FNALIAS(f2ulz, fixunssfdi); + +COMPILER_RT_ABI du_int __fixunssfdi(float a) { float_bits fb; |