diff options
Diffstat (limited to 'soft-fp/negdf2.c')
-rw-r--r-- | soft-fp/negdf2.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/soft-fp/negdf2.c b/soft-fp/negdf2.c index 3cc6f5f400..1dedc715dd 100644 --- a/soft-fp/negdf2.c +++ b/soft-fp/negdf2.c @@ -33,15 +33,12 @@ DFtype __negdf2(DFtype a) { - FP_DECL_EX; FP_DECL_D(A); FP_DECL_D(R); DFtype r; - FP_UNPACK_D(A, a); + FP_UNPACK_RAW_D(A, a); FP_NEG_D(R, A); - FP_PACK_D(r, R); - FP_CLEAR_EXCEPTIONS; - FP_HANDLE_EXCEPTIONS; + FP_PACK_RAW_D(r, R); return r; } |