aboutsummaryrefslogtreecommitdiff
path: root/soft-fp/fixunssfti.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/fixunssfti.c')
-rw-r--r--soft-fp/fixunssfti.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixunssfti.c b/soft-fp/fixunssfti.c
index 694f7e422e..36d01b0cfe 100644
--- a/soft-fp/fixunssfti.c
+++ b/soft-fp/fixunssfti.c
@@ -31,15 +31,15 @@
#include "single.h"
UTItype
-__fixunssfti(SFtype a)
+__fixunssfti (SFtype a)
{
FP_DECL_EX;
- FP_DECL_S(A);
+ FP_DECL_S (A);
UTItype r;
FP_INIT_EXCEPTIONS;
- FP_UNPACK_RAW_S(A, a);
- FP_TO_INT_S(r, A, TI_BITS, 0);
+ FP_UNPACK_RAW_S (A, a);
+ FP_TO_INT_S (r, A, TI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
return r;