diff options
Diffstat (limited to 'soft-fp/mulsf3.c')
-rw-r--r-- | soft-fp/mulsf3.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/soft-fp/mulsf3.c b/soft-fp/mulsf3.c index f0341a56c5..b602f219d7 100644 --- a/soft-fp/mulsf3.c +++ b/soft-fp/mulsf3.c @@ -31,10 +31,13 @@ #include "soft-fp.h" #include "single.h" -SFtype __mulsf3(SFtype a, SFtype b) +SFtype +__mulsf3(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; |