diff options
Diffstat (limited to 'compiler-rt/lib/floatundisf.c')
-rw-r--r-- | compiler-rt/lib/floatundisf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler-rt/lib/floatundisf.c b/compiler-rt/lib/floatundisf.c index 2d2a51458ac..eea45a74594 100644 --- a/compiler-rt/lib/floatundisf.c +++ b/compiler-rt/lib/floatundisf.c @@ -12,7 +12,7 @@ *===----------------------------------------------------------------------=== */ -#include "int_lib.h" +#include "abi.h" #include <float.h> /* Returns: convert a to a float, rounding toward even. */ @@ -27,7 +27,7 @@ ARM_EABI_FNALIAS(ul2f, floatundisf); -float +COMPILER_RT_ABI float __floatundisf(du_int a) { if (a == 0) |