diff options
Diffstat (limited to 'soft-fp/fixtfsi.c')
-rw-r--r-- | soft-fp/fixtfsi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixtfsi.c b/soft-fp/fixtfsi.c index e2096cb6e5..bc0ea0b87d 100644 --- a/soft-fp/fixtfsi.c +++ b/soft-fp/fixtfsi.c @@ -32,15 +32,15 @@ #include "quad.h" SItype -__fixtfsi(TFtype a) +__fixtfsi (TFtype a) { FP_DECL_EX; - FP_DECL_Q(A); + FP_DECL_Q (A); USItype r; FP_INIT_EXCEPTIONS; - FP_UNPACK_RAW_Q(A, a); - FP_TO_INT_Q(r, A, SI_BITS, 1); + FP_UNPACK_RAW_Q (A, a); + FP_TO_INT_Q (r, A, SI_BITS, 1); FP_HANDLE_EXCEPTIONS; return r; |