diff options
Diffstat (limited to 'soft-fp/negtf2.c')
-rw-r--r-- | soft-fp/negtf2.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/soft-fp/negtf2.c b/soft-fp/negtf2.c index f51a621611..eb28eba501 100644 --- a/soft-fp/negtf2.c +++ b/soft-fp/negtf2.c @@ -31,9 +31,11 @@ #include "soft-fp.h" #include "quad.h" -TFtype __negtf2(TFtype a) +TFtype +__negtf2(TFtype a) { - FP_DECL_Q(A); FP_DECL_Q(R); + FP_DECL_Q(A); + FP_DECL_Q(R); TFtype r; FP_UNPACK_RAW_Q(A, a); |