summaryrefslogtreecommitdiff
path: root/libc/soft-fp/negdf2.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/soft-fp/negdf2.c')
-rw-r--r--libc/soft-fp/negdf2.c15
1 files changed, 7 insertions, 8 deletions
diff --git a/libc/soft-fp/negdf2.c b/libc/soft-fp/negdf2.c
index 3cc6f5f40..d74c16c1e 100644
--- a/libc/soft-fp/negdf2.c
+++ b/libc/soft-fp/negdf2.c
@@ -31,17 +31,16 @@
#include "soft-fp.h"
#include "double.h"
-DFtype __negdf2(DFtype a)
+DFtype
+__negdf2 (DFtype a)
{
- FP_DECL_EX;
- FP_DECL_D(A); FP_DECL_D(R);
+ FP_DECL_D (A);
+ FP_DECL_D (R);
DFtype r;
- FP_UNPACK_D(A, a);
- FP_NEG_D(R, A);
- FP_PACK_D(r, R);
- FP_CLEAR_EXCEPTIONS;
- FP_HANDLE_EXCEPTIONS;
+ FP_UNPACK_RAW_D (A, a);
+ FP_NEG_D (R, A);
+ FP_PACK_RAW_D (r, R);
return r;
}