diff options
Diffstat (limited to 'soft-fp/negdf2.c')
-rw-r--r-- | soft-fp/negdf2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/soft-fp/negdf2.c b/soft-fp/negdf2.c index 1dedc715dd..c1b858ba39 100644 --- a/soft-fp/negdf2.c +++ b/soft-fp/negdf2.c @@ -31,9 +31,11 @@ #include "soft-fp.h" #include "double.h" -DFtype __negdf2(DFtype a) +DFtype +__negdf2(DFtype a) { - FP_DECL_D(A); FP_DECL_D(R); + FP_DECL_D(A); + FP_DECL_D(R); DFtype r; FP_UNPACK_RAW_D(A, a); |