summaryrefslogtreecommitdiff
path: root/soft-fp/floatunsitf.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/floatunsitf.c')
-rw-r--r--soft-fp/floatunsitf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/soft-fp/floatunsitf.c b/soft-fp/floatunsitf.c
index 1099c2ee84..e94ae926b7 100644
--- a/soft-fp/floatunsitf.c
+++ b/soft-fp/floatunsitf.c
@@ -28,19 +28,18 @@
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
__floatunsitf(USItype i)
{
- FP_DECL_EX;
FP_DECL_Q(A);
TFtype a;
FP_FROM_INT_Q(A, i, SI_BITS, USItype);
FP_PACK_RAW_Q(a, A);
- FP_HANDLE_EXCEPTIONS;
return a;
}