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