summaryrefslogtreecommitdiff
path: root/libc/soft-fp/addsf3.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/soft-fp/addsf3.c')
-rw-r--r--libc/soft-fp/addsf3.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/libc/soft-fp/addsf3.c b/libc/soft-fp/addsf3.c
index 8a31449e3..ac571bad0 100644
--- a/libc/soft-fp/addsf3.c
+++ b/libc/soft-fp/addsf3.c
@@ -31,17 +31,20 @@
#include "soft-fp.h"
#include "single.h"
-SFtype __addsf3(SFtype a, SFtype b)
+SFtype
+__addsf3 (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_ADD_S(R, A, B);
- FP_PACK_SEMIRAW_S(r, R);
+ FP_UNPACK_SEMIRAW_S (A, a);
+ FP_UNPACK_SEMIRAW_S (B, b);
+ FP_ADD_S (R, A, B);
+ FP_PACK_SEMIRAW_S (r, R);
FP_HANDLE_EXCEPTIONS;
return r;