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/floatditf.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'soft-fp/floatditf.c') diff --git a/soft-fp/floatditf.c b/soft-fp/floatditf.c index 68da6c60b0..7f5e3b0456 100644 --- a/soft-fp/floatditf.c +++ b/soft-fp/floatditf.c @@ -28,18 +28,17 @@ License along with the GNU C Library; if not, see . */ +#define FP_NO_EXCEPTIONS #include "soft-fp.h" #include "quad.h" TFtype __floatditf(DItype i) { - FP_DECL_EX; FP_DECL_Q(A); TFtype a; FP_FROM_INT_Q(A, i, DI_BITS, UDItype); FP_PACK_RAW_Q(a, A); - FP_HANDLE_EXCEPTIONS; return a; } -- cgit v1.2.1