diff options
Diffstat (limited to 'soft-fp/muldf3.c')
-rw-r--r-- | soft-fp/muldf3.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/soft-fp/muldf3.c b/soft-fp/muldf3.c index 8c08281b46..96e6a3b45e 100644 --- a/soft-fp/muldf3.c +++ b/soft-fp/muldf3.c @@ -31,10 +31,13 @@ #include "soft-fp.h" #include "double.h" -DFtype __muldf3(DFtype a, DFtype b) +DFtype +__muldf3(DFtype a, DFtype b) { FP_DECL_EX; - FP_DECL_D(A); FP_DECL_D(B); FP_DECL_D(R); + FP_DECL_D(A); + FP_DECL_D(B); + FP_DECL_D(R); DFtype r; FP_INIT_ROUNDMODE; |