diff options
Diffstat (limited to 'soft-fp/floatsitf.c')
-rw-r--r-- | soft-fp/floatsitf.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/floatsitf.c b/soft-fp/floatsitf.c index d5f107f8c5..d7c3078e4b 100644 --- a/soft-fp/floatsitf.c +++ b/soft-fp/floatsitf.c @@ -33,13 +33,13 @@ #include "quad.h" TFtype -__floatsitf(SItype i) +__floatsitf (SItype i) { - FP_DECL_Q(A); + FP_DECL_Q (A); TFtype a; - FP_FROM_INT_Q(A, i, SI_BITS, USItype); - FP_PACK_RAW_Q(a, A); + FP_FROM_INT_Q (A, i, SI_BITS, USItype); + FP_PACK_RAW_Q (a, A); return a; } |