diff options
Diffstat (limited to 'libgcc/soft-fp/fixunssfdi.c')
-rw-r--r-- | libgcc/soft-fp/fixunssfdi.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/libgcc/soft-fp/fixunssfdi.c b/libgcc/soft-fp/fixunssfdi.c index c0691c663cf..4261c5e6a7a 100644 --- a/libgcc/soft-fp/fixunssfdi.c +++ b/libgcc/soft-fp/fixunssfdi.c @@ -31,14 +31,16 @@ #include "soft-fp.h" #include "single.h" -UDItype __fixunssfdi(SFtype a) +UDItype +__fixunssfdi (SFtype a) { FP_DECL_EX; - FP_DECL_S(A); + FP_DECL_S (A); UDItype r; - FP_UNPACK_RAW_S(A, a); - FP_TO_INT_S(r, A, DI_BITS, 0); + FP_INIT_EXCEPTIONS; + FP_UNPACK_RAW_S (A, a); + FP_TO_INT_S (r, A, DI_BITS, 0); FP_HANDLE_EXCEPTIONS; return r; |