From 8edc4a11cfbfd65a86696264f20e2d6d22edff54 Mon Sep 17 00:00:00 2001 From: Joseph Myers Date: Sat, 12 Oct 2013 12:20:12 +0000 Subject: soft-fp: add macro FP_NO_EXCEPTIONS. --- soft-fp/floatsidf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'soft-fp/floatsidf.c') diff --git a/soft-fp/floatsidf.c b/soft-fp/floatsidf.c index ec578fb..967a83f 100644 --- a/soft-fp/floatsidf.c +++ b/soft-fp/floatsidf.c @@ -28,18 +28,17 @@ License along with the GNU C Library; if not, see . */ +#define FP_NO_EXCEPTIONS #include "soft-fp.h" #include "double.h" DFtype __floatsidf(SItype i) { - FP_DECL_EX; FP_DECL_D(A); DFtype a; FP_FROM_INT_D(A, i, SI_BITS, USItype); FP_PACK_RAW_D(a, A); - FP_HANDLE_EXCEPTIONS; return a; } -- cgit v1.1