summaryrefslogtreecommitdiff
path: root/soft-fp
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-10-12 12:21:04 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-10-12 12:21:04 +0000
commit98998e9f518e3b76c2bf63f825f930bd7f6486f1 (patch)
tree9ac82ed24f925dcf2228e284666ca7939de62f71 /soft-fp
parent8edc4a11cfbfd65a86696264f20e2d6d22edff54 (diff)
soft-fp: add missing FP_INIT_EXCEPTIONS and FP_INIT_ROUNDMODE calls.
Diffstat (limited to 'soft-fp')
-rw-r--r--soft-fp/eqdf2.c1
-rw-r--r--soft-fp/eqsf2.c1
-rw-r--r--soft-fp/eqtf2.c1
-rw-r--r--soft-fp/fixdfdi.c1
-rw-r--r--soft-fp/fixdfsi.c1
-rw-r--r--soft-fp/fixdfti.c1
-rw-r--r--soft-fp/fixsfdi.c1
-rw-r--r--soft-fp/fixsfsi.c1
-rw-r--r--soft-fp/fixsfti.c1
-rw-r--r--soft-fp/fixtfdi.c1
-rw-r--r--soft-fp/fixtfsi.c1
-rw-r--r--soft-fp/fixtfti.c1
-rw-r--r--soft-fp/fixunsdfdi.c1
-rw-r--r--soft-fp/fixunsdfsi.c1
-rw-r--r--soft-fp/fixunsdfti.c1
-rw-r--r--soft-fp/fixunssfdi.c1
-rw-r--r--soft-fp/fixunssfsi.c1
-rw-r--r--soft-fp/fixunssfti.c1
-rw-r--r--soft-fp/fixunstfdi.c1
-rw-r--r--soft-fp/fixunstfsi.c1
-rw-r--r--soft-fp/fixunstfti.c1
-rw-r--r--soft-fp/floatdidf.c1
-rw-r--r--soft-fp/floatdisf.c1
-rw-r--r--soft-fp/floatsisf.c1
-rw-r--r--soft-fp/floattidf.c1
-rw-r--r--soft-fp/floattisf.c1
-rw-r--r--soft-fp/floattitf.c1
-rw-r--r--soft-fp/floatundidf.c1
-rw-r--r--soft-fp/floatundisf.c1
-rw-r--r--soft-fp/floatunsisf.c1
-rw-r--r--soft-fp/floatuntidf.c1
-rw-r--r--soft-fp/floatuntisf.c1
-rw-r--r--soft-fp/floatuntitf.c1
-rw-r--r--soft-fp/gedf2.c1
-rw-r--r--soft-fp/gesf2.c1
-rw-r--r--soft-fp/getf2.c1
-rw-r--r--soft-fp/ledf2.c1
-rw-r--r--soft-fp/lesf2.c1
-rw-r--r--soft-fp/letf2.c1
39 files changed, 39 insertions, 0 deletions
diff --git a/soft-fp/eqdf2.c b/soft-fp/eqdf2.c
index c93c118f4e..8e9408a168 100644
--- a/soft-fp/eqdf2.c
+++ b/soft-fp/eqdf2.c
@@ -37,6 +37,7 @@ CMPtype __eqdf2(DFtype a, DFtype b)
FP_DECL_D(A); FP_DECL_D(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b);
FP_CMP_EQ_D(r, A, B);
diff --git a/soft-fp/eqsf2.c b/soft-fp/eqsf2.c
index e5b2a5f36a..3884b0025e 100644
--- a/soft-fp/eqsf2.c
+++ b/soft-fp/eqsf2.c
@@ -37,6 +37,7 @@ CMPtype __eqsf2(SFtype a, SFtype b)
FP_DECL_S(A); FP_DECL_S(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b);
FP_CMP_EQ_S(r, A, B);
diff --git a/soft-fp/eqtf2.c b/soft-fp/eqtf2.c
index 47b5d5cb61..4a80375105 100644
--- a/soft-fp/eqtf2.c
+++ b/soft-fp/eqtf2.c
@@ -37,6 +37,7 @@ CMPtype __eqtf2(TFtype a, TFtype b)
FP_DECL_Q(A); FP_DECL_Q(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b);
FP_CMP_EQ_Q(r, A, B);
diff --git a/soft-fp/fixdfdi.c b/soft-fp/fixdfdi.c
index 71ce1d4d71..c426018032 100644
--- a/soft-fp/fixdfdi.c
+++ b/soft-fp/fixdfdi.c
@@ -37,6 +37,7 @@ DItype __fixdfdi(DFtype a)
FP_DECL_D(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, DI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixdfsi.c b/soft-fp/fixdfsi.c
index f0c9960644..97f9afeb31 100644
--- a/soft-fp/fixdfsi.c
+++ b/soft-fp/fixdfsi.c
@@ -37,6 +37,7 @@ SItype __fixdfsi(DFtype a)
FP_DECL_D(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, SI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixdfti.c b/soft-fp/fixdfti.c
index a108c673c4..0b823774c7 100644
--- a/soft-fp/fixdfti.c
+++ b/soft-fp/fixdfti.c
@@ -36,6 +36,7 @@ TItype __fixdfti(DFtype a)
FP_DECL_D(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, TI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixsfdi.c b/soft-fp/fixsfdi.c
index 5f69d6a288..564b96c4cb 100644
--- a/soft-fp/fixsfdi.c
+++ b/soft-fp/fixsfdi.c
@@ -37,6 +37,7 @@ DItype __fixsfdi(SFtype a)
FP_DECL_S(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, DI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixsfsi.c b/soft-fp/fixsfsi.c
index 6fffdd7378..a82bdf3072 100644
--- a/soft-fp/fixsfsi.c
+++ b/soft-fp/fixsfsi.c
@@ -37,6 +37,7 @@ SItype __fixsfsi(SFtype a)
FP_DECL_S(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, SI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixsfti.c b/soft-fp/fixsfti.c
index c65561d021..84f898b337 100644
--- a/soft-fp/fixsfti.c
+++ b/soft-fp/fixsfti.c
@@ -36,6 +36,7 @@ TItype __fixsfti(SFtype a)
FP_DECL_S(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, TI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixtfdi.c b/soft-fp/fixtfdi.c
index ac67bfbd3c..0b3711a390 100644
--- a/soft-fp/fixtfdi.c
+++ b/soft-fp/fixtfdi.c
@@ -37,6 +37,7 @@ DItype __fixtfdi(TFtype a)
FP_DECL_Q(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, DI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixtfsi.c b/soft-fp/fixtfsi.c
index 8f27ff66f0..320c066e70 100644
--- a/soft-fp/fixtfsi.c
+++ b/soft-fp/fixtfsi.c
@@ -37,6 +37,7 @@ SItype __fixtfsi(TFtype a)
FP_DECL_Q(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, SI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixtfti.c b/soft-fp/fixtfti.c
index 44fe14747f..f65d739b19 100644
--- a/soft-fp/fixtfti.c
+++ b/soft-fp/fixtfti.c
@@ -36,6 +36,7 @@ TItype __fixtfti(TFtype a)
FP_DECL_Q(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, TI_BITS, 1);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunsdfdi.c b/soft-fp/fixunsdfdi.c
index 82fe1c7538..22f9739d3f 100644
--- a/soft-fp/fixunsdfdi.c
+++ b/soft-fp/fixunsdfdi.c
@@ -37,6 +37,7 @@ UDItype __fixunsdfdi(DFtype a)
FP_DECL_D(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, DI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunsdfsi.c b/soft-fp/fixunsdfsi.c
index 43287b0073..fad5e353cf 100644
--- a/soft-fp/fixunsdfsi.c
+++ b/soft-fp/fixunsdfsi.c
@@ -37,6 +37,7 @@ USItype __fixunsdfsi(DFtype a)
FP_DECL_D(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, SI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunsdfti.c b/soft-fp/fixunsdfti.c
index a64e0bd2b5..653f3ee51d 100644
--- a/soft-fp/fixunsdfti.c
+++ b/soft-fp/fixunsdfti.c
@@ -36,6 +36,7 @@ UTItype __fixunsdfti(DFtype a)
FP_DECL_D(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_TO_INT_D(r, A, TI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunssfdi.c b/soft-fp/fixunssfdi.c
index c0691c663c..4d6b91c1c7 100644
--- a/soft-fp/fixunssfdi.c
+++ b/soft-fp/fixunssfdi.c
@@ -37,6 +37,7 @@ UDItype __fixunssfdi(SFtype a)
FP_DECL_S(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, DI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunssfsi.c b/soft-fp/fixunssfsi.c
index 3d00ce8d56..8d4ed89e9f 100644
--- a/soft-fp/fixunssfsi.c
+++ b/soft-fp/fixunssfsi.c
@@ -37,6 +37,7 @@ USItype __fixunssfsi(SFtype a)
FP_DECL_S(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, SI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunssfti.c b/soft-fp/fixunssfti.c
index ae96b30702..20b07e9d1f 100644
--- a/soft-fp/fixunssfti.c
+++ b/soft-fp/fixunssfti.c
@@ -36,6 +36,7 @@ UTItype __fixunssfti(SFtype a)
FP_DECL_S(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_TO_INT_S(r, A, TI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunstfdi.c b/soft-fp/fixunstfdi.c
index d6038fa891..4f6c2f89d4 100644
--- a/soft-fp/fixunstfdi.c
+++ b/soft-fp/fixunstfdi.c
@@ -37,6 +37,7 @@ UDItype __fixunstfdi(TFtype a)
FP_DECL_Q(A);
UDItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, DI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunstfsi.c b/soft-fp/fixunstfsi.c
index c8481f1caf..801009cd97 100644
--- a/soft-fp/fixunstfsi.c
+++ b/soft-fp/fixunstfsi.c
@@ -37,6 +37,7 @@ USItype __fixunstfsi(TFtype a)
FP_DECL_Q(A);
USItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, SI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/fixunstfti.c b/soft-fp/fixunstfti.c
index b89e1ccb2e..1a959aa517 100644
--- a/soft-fp/fixunstfti.c
+++ b/soft-fp/fixunstfti.c
@@ -36,6 +36,7 @@ UTItype __fixunstfti(TFtype a)
FP_DECL_Q(A);
UTItype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_TO_INT_Q(r, A, TI_BITS, 0);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatdidf.c b/soft-fp/floatdidf.c
index f6f594a84f..70082e11b3 100644
--- a/soft-fp/floatdidf.c
+++ b/soft-fp/floatdidf.c
@@ -37,6 +37,7 @@ DFtype __floatdidf(DItype i)
FP_DECL_D(A);
DFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_D(A, i, DI_BITS, UDItype);
FP_PACK_RAW_D(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatdisf.c b/soft-fp/floatdisf.c
index 72252e4a99..4a93793162 100644
--- a/soft-fp/floatdisf.c
+++ b/soft-fp/floatdisf.c
@@ -37,6 +37,7 @@ SFtype __floatdisf(DItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, DI_BITS, UDItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatsisf.c b/soft-fp/floatsisf.c
index c9ff205d7f..b4afb9fb88 100644
--- a/soft-fp/floatsisf.c
+++ b/soft-fp/floatsisf.c
@@ -37,6 +37,7 @@ SFtype __floatsisf(SItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, SI_BITS, USItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floattidf.c b/soft-fp/floattidf.c
index 778904eb88..aad11cb008 100644
--- a/soft-fp/floattidf.c
+++ b/soft-fp/floattidf.c
@@ -36,6 +36,7 @@ DFtype __floattidf(TItype i)
FP_DECL_D(A);
DFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_D(A, i, TI_BITS, UTItype);
FP_PACK_RAW_D(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floattisf.c b/soft-fp/floattisf.c
index 03ed1e21c7..dd932af974 100644
--- a/soft-fp/floattisf.c
+++ b/soft-fp/floattisf.c
@@ -36,6 +36,7 @@ SFtype __floattisf(TItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, TI_BITS, UTItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floattitf.c b/soft-fp/floattitf.c
index fdfad61438..40e66b3c95 100644
--- a/soft-fp/floattitf.c
+++ b/soft-fp/floattitf.c
@@ -36,6 +36,7 @@ TFtype __floattitf(TItype i)
FP_DECL_Q(A);
TFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_Q(A, i, TI_BITS, UTItype);
FP_PACK_RAW_Q(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatundidf.c b/soft-fp/floatundidf.c
index 1babcec8e0..53877c2f57 100644
--- a/soft-fp/floatundidf.c
+++ b/soft-fp/floatundidf.c
@@ -37,6 +37,7 @@ DFtype __floatundidf(UDItype i)
FP_DECL_D(A);
DFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_D(A, i, DI_BITS, UDItype);
FP_PACK_RAW_D(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatundisf.c b/soft-fp/floatundisf.c
index 1c645c023d..cec4b0d5ae 100644
--- a/soft-fp/floatundisf.c
+++ b/soft-fp/floatundisf.c
@@ -37,6 +37,7 @@ SFtype __floatundisf(UDItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, DI_BITS, UDItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatunsisf.c b/soft-fp/floatunsisf.c
index 2c0cc89763..0a694f61a9 100644
--- a/soft-fp/floatunsisf.c
+++ b/soft-fp/floatunsisf.c
@@ -37,6 +37,7 @@ SFtype __floatunsisf(USItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, SI_BITS, USItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatuntidf.c b/soft-fp/floatuntidf.c
index d533563028..ec9a41c31b 100644
--- a/soft-fp/floatuntidf.c
+++ b/soft-fp/floatuntidf.c
@@ -36,6 +36,7 @@ DFtype __floatuntidf(UTItype i)
FP_DECL_D(A);
DFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_D(A, i, TI_BITS, UTItype);
FP_PACK_RAW_D(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatuntisf.c b/soft-fp/floatuntisf.c
index f0ae3525c3..d70b025f5d 100644
--- a/soft-fp/floatuntisf.c
+++ b/soft-fp/floatuntisf.c
@@ -36,6 +36,7 @@ SFtype __floatuntisf(UTItype i)
FP_DECL_S(A);
SFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_S(A, i, TI_BITS, UTItype);
FP_PACK_RAW_S(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/floatuntitf.c b/soft-fp/floatuntitf.c
index b7beb03f79..ee278eb29d 100644
--- a/soft-fp/floatuntitf.c
+++ b/soft-fp/floatuntitf.c
@@ -36,6 +36,7 @@ TFtype __floatuntitf(UTItype i)
FP_DECL_Q(A);
TFtype a;
+ FP_INIT_ROUNDMODE;
FP_FROM_INT_Q(A, i, TI_BITS, UTItype);
FP_PACK_RAW_Q(a, A);
FP_HANDLE_EXCEPTIONS;
diff --git a/soft-fp/gedf2.c b/soft-fp/gedf2.c
index 0ef9f5de2c..a36f5723a4 100644
--- a/soft-fp/gedf2.c
+++ b/soft-fp/gedf2.c
@@ -37,6 +37,7 @@ CMPtype __gedf2(DFtype a, DFtype b)
FP_DECL_D(A); FP_DECL_D(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b);
FP_CMP_D(r, A, B, -2);
diff --git a/soft-fp/gesf2.c b/soft-fp/gesf2.c
index f0a8377310..899fcc5c90 100644
--- a/soft-fp/gesf2.c
+++ b/soft-fp/gesf2.c
@@ -37,6 +37,7 @@ CMPtype __gesf2(SFtype a, SFtype b)
FP_DECL_S(A); FP_DECL_S(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b);
FP_CMP_S(r, A, B, -2);
diff --git a/soft-fp/getf2.c b/soft-fp/getf2.c
index 705d48b905..d9cb26de07 100644
--- a/soft-fp/getf2.c
+++ b/soft-fp/getf2.c
@@ -37,6 +37,7 @@ CMPtype __getf2(TFtype a, TFtype b)
FP_DECL_Q(A); FP_DECL_Q(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b);
FP_CMP_Q(r, A, B, -2);
diff --git a/soft-fp/ledf2.c b/soft-fp/ledf2.c
index 7b8f403bb8..6922d2ff6e 100644
--- a/soft-fp/ledf2.c
+++ b/soft-fp/ledf2.c
@@ -37,6 +37,7 @@ CMPtype __ledf2(DFtype a, DFtype b)
FP_DECL_D(A); FP_DECL_D(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_D(A, a);
FP_UNPACK_RAW_D(B, b);
FP_CMP_D(r, A, B, 2);
diff --git a/soft-fp/lesf2.c b/soft-fp/lesf2.c
index 41f823b5fc..cee56143c0 100644
--- a/soft-fp/lesf2.c
+++ b/soft-fp/lesf2.c
@@ -37,6 +37,7 @@ CMPtype __lesf2(SFtype a, SFtype b)
FP_DECL_S(A); FP_DECL_S(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_S(A, a);
FP_UNPACK_RAW_S(B, b);
FP_CMP_S(r, A, B, 2);
diff --git a/soft-fp/letf2.c b/soft-fp/letf2.c
index 59342ca4cb..7644b26036 100644
--- a/soft-fp/letf2.c
+++ b/soft-fp/letf2.c
@@ -37,6 +37,7 @@ CMPtype __letf2(TFtype a, TFtype b)
FP_DECL_Q(A); FP_DECL_Q(B);
CMPtype r;
+ FP_INIT_EXCEPTIONS;
FP_UNPACK_RAW_Q(A, a);
FP_UNPACK_RAW_Q(B, b);
FP_CMP_Q(r, A, B, 2);