aboutsummaryrefslogtreecommitdiff
path: root/soft-fp/floatditf.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/floatditf.c')
-rw-r--r--soft-fp/floatditf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/soft-fp/floatditf.c b/soft-fp/floatditf.c
index 68da6c6..7f5e3b0 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
<http://www.gnu.org/licenses/>. */
+#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;
}