diff options
Diffstat (limited to 'soft-fp/multf3.c')
-rw-r--r-- | soft-fp/multf3.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/soft-fp/multf3.c b/soft-fp/multf3.c index 35badf2fc8..9b898e290e 100644 --- a/soft-fp/multf3.c +++ b/soft-fp/multf3.c @@ -31,10 +31,13 @@ #include "soft-fp.h" #include "quad.h" -TFtype __multf3(TFtype a, TFtype b) +TFtype +__multf3(TFtype a, TFtype b) { FP_DECL_EX; - FP_DECL_Q(A); FP_DECL_Q(B); FP_DECL_Q(R); + FP_DECL_Q(A); + FP_DECL_Q(B); + FP_DECL_Q(R); TFtype r; FP_INIT_ROUNDMODE; |