diff options
Diffstat (limited to 'libgcc/soft-fp/floatundisf.c')
-rw-r--r-- | libgcc/soft-fp/floatundisf.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libgcc/soft-fp/floatundisf.c b/libgcc/soft-fp/floatundisf.c index 1c645c023d3..8dc750851af 100644 --- a/libgcc/soft-fp/floatundisf.c +++ b/libgcc/soft-fp/floatundisf.c @@ -31,14 +31,16 @@ #include "soft-fp.h" #include "single.h" -SFtype __floatundisf(UDItype i) +SFtype +__floatundisf (UDItype i) { FP_DECL_EX; - FP_DECL_S(A); + FP_DECL_S (A); SFtype a; - FP_FROM_INT_S(A, i, DI_BITS, UDItype); - FP_PACK_RAW_S(a, A); + FP_INIT_ROUNDMODE; + FP_FROM_INT_S (A, i, DI_BITS, UDItype); + FP_PACK_RAW_S (a, A); FP_HANDLE_EXCEPTIONS; return a; |