about summary refs log tree commit diff
path: root/soft-fp/floatsidf.c
diff options
context:
space:
mode:
Diffstat (limited to 'soft-fp/floatsidf.c')
-rw-r--r--soft-fp/floatsidf.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/soft-fp/floatsidf.c b/soft-fp/floatsidf.c
index ec578fba79..967a83fbfe 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
    <http://www.gnu.org/licenses/>.  */
 
+#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;
 }