about summary refs log tree commit diff
path: root/soft-fp/fixsfti.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/fixsfti.c')
-rw-r--r--soft-fp/fixsfti.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/soft-fp/fixsfti.c b/soft-fp/fixsfti.c
index 91efb52489..6b5229fe91 100644
--- a/soft-fp/fixsfti.c
+++ b/soft-fp/fixsfti.c
@@ -31,15 +31,15 @@
 #include "single.h"
 
 TItype
-__fixsfti(SFtype a)
+__fixsfti (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, 1);
+  FP_UNPACK_RAW_S (A, a);
+  FP_TO_INT_S (r, A, TI_BITS, 1);
   FP_HANDLE_EXCEPTIONS;
 
   return r;