about summary refs log tree commit diff
path: root/soft-fp/subsf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/subsf3.c')
-rw-r--r--soft-fp/subsf3.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/soft-fp/subsf3.c b/soft-fp/subsf3.c
index 05c933ba6c..d46ddf58ae 100644
--- a/soft-fp/subsf3.c
+++ b/soft-fp/subsf3.c
@@ -32,19 +32,19 @@
 #include "single.h"
 
 SFtype
-__subsf3(SFtype a, SFtype b)
+__subsf3 (SFtype a, SFtype b)
 {
   FP_DECL_EX;
-  FP_DECL_S(A);
-  FP_DECL_S(B);
-  FP_DECL_S(R);
+  FP_DECL_S (A);
+  FP_DECL_S (B);
+  FP_DECL_S (R);
   SFtype r;
 
   FP_INIT_ROUNDMODE;
-  FP_UNPACK_SEMIRAW_S(A, a);
-  FP_UNPACK_SEMIRAW_S(B, b);
-  FP_SUB_S(R, A, B);
-  FP_PACK_SEMIRAW_S(r, R);
+  FP_UNPACK_SEMIRAW_S (A, a);
+  FP_UNPACK_SEMIRAW_S (B, b);
+  FP_SUB_S (R, A, B);
+  FP_PACK_SEMIRAW_S (r, R);
   FP_HANDLE_EXCEPTIONS;
 
   return r;