diff options
Diffstat (limited to 'libgcc/soft-fp/floatdisf.c')
-rw-r--r-- | libgcc/soft-fp/floatdisf.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libgcc/soft-fp/floatdisf.c b/libgcc/soft-fp/floatdisf.c index 72252e4..b6b6b42 100644 --- a/libgcc/soft-fp/floatdisf.c +++ b/libgcc/soft-fp/floatdisf.c @@ -31,14 +31,16 @@ #include "soft-fp.h" #include "single.h" -SFtype __floatdisf(DItype i) +SFtype +__floatdisf (DItype 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; |