diff options
Diffstat (limited to 'soft-fp/floattidf.c')
-rw-r--r-- | soft-fp/floattidf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/floattidf.c b/soft-fp/floattidf.c index 004fab45e0..a28181b23a 100644 --- a/soft-fp/floattidf.c +++ b/soft-fp/floattidf.c @@ -31,15 +31,15 @@ #include "double.h" DFtype -__floattidf(TItype i) +__floattidf (TItype i) { FP_DECL_EX; - FP_DECL_D(A); + FP_DECL_D (A); DFtype a; FP_INIT_ROUNDMODE; - FP_FROM_INT_D(A, i, TI_BITS, UTItype); - FP_PACK_RAW_D(a, A); + FP_FROM_INT_D (A, i, TI_BITS, UTItype); + FP_PACK_RAW_D (a, A); FP_HANDLE_EXCEPTIONS; return a; |