diff options
Diffstat (limited to 'soft-fp/fixsfsi.c')
-rw-r--r-- | soft-fp/fixsfsi.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixsfsi.c b/soft-fp/fixsfsi.c index 2e287946cd..4c0bfd39db 100644 --- a/soft-fp/fixsfsi.c +++ b/soft-fp/fixsfsi.c @@ -32,15 +32,15 @@ #include "single.h" SItype -__fixsfsi(SFtype a) +__fixsfsi (SFtype a) { FP_DECL_EX; - FP_DECL_S(A); + FP_DECL_S (A); USItype r; FP_INIT_EXCEPTIONS; - FP_UNPACK_RAW_S(A, a); - FP_TO_INT_S(r, A, SI_BITS, 1); + FP_UNPACK_RAW_S (A, a); + FP_TO_INT_S (r, A, SI_BITS, 1); FP_HANDLE_EXCEPTIONS; return r; |