diff options
Diffstat (limited to 'soft-fp/adddf3.c')
-rw-r--r-- | soft-fp/adddf3.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/soft-fp/adddf3.c b/soft-fp/adddf3.c index 55df554b05..2f11c9cea5 100644 --- a/soft-fp/adddf3.c +++ b/soft-fp/adddf3.c @@ -31,10 +31,13 @@ #include "soft-fp.h" #include "double.h" -DFtype __adddf3(DFtype a, DFtype b) +DFtype +__adddf3(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; |