diff options
Diffstat (limited to 'soft-fp/floatsidf.c')
-rw-r--r-- | soft-fp/floatsidf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/floatsidf.c b/soft-fp/floatsidf.c index 04cc2e2782..7df5265ffc 100644 --- a/soft-fp/floatsidf.c +++ b/soft-fp/floatsidf.c @@ -33,13 +33,13 @@ #include "double.h" DFtype -__floatsidf(SItype i) +__floatsidf (SItype i) { - FP_DECL_D(A); + FP_DECL_D (A); DFtype a; - FP_FROM_INT_D(A, i, SI_BITS, USItype); - FP_PACK_RAW_D(a, A); + FP_FROM_INT_D (A, i, SI_BITS, USItype); + FP_PACK_RAW_D (a, A); return a; } |