diff options
Diffstat (limited to 'soft-fp/floatunditf.c')
-rw-r--r-- | soft-fp/floatunditf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/soft-fp/floatunditf.c b/soft-fp/floatunditf.c index fff73fd..e178dea 100644 --- a/soft-fp/floatunditf.c +++ b/soft-fp/floatunditf.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 __floatunditf(UDItype 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; } |