diff options
Diffstat (limited to 'soft-fp/fixunsdfsi.c')
-rw-r--r-- | soft-fp/fixunsdfsi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixunsdfsi.c b/soft-fp/fixunsdfsi.c index 09a0c7618e..ff3744467a 100644 --- a/soft-fp/fixunsdfsi.c +++ b/soft-fp/fixunsdfsi.c @@ -32,15 +32,15 @@ #include "double.h" USItype -__fixunsdfsi(DFtype a) +__fixunsdfsi (DFtype a) { FP_DECL_EX; - FP_DECL_D(A); + FP_DECL_D (A); USItype r; FP_INIT_EXCEPTIONS; - FP_UNPACK_RAW_D(A, a); - FP_TO_INT_D(r, A, SI_BITS, 0); + FP_UNPACK_RAW_D (A, a); + FP_TO_INT_D (r, A, SI_BITS, 0); FP_HANDLE_EXCEPTIONS; return r; |