From cd6eecfc0dc46923ae8c5795e1d490977c7511c1 Mon Sep 17 00:00:00 2001 From: "H.J. Lu" Date: Mon, 4 Jul 2005 17:51:36 +0000 Subject: 2005-07-04 H.J. Lu * tic30-dis.c (cnvt_tmsfloat_ieee): Use HUGE_VALF if defined. --- opcodes/tic30-dis.c | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'opcodes/tic30-dis.c') diff --git a/opcodes/tic30-dis.c b/opcodes/tic30-dis.c index eac6c4571d..9e57050f13 100644 --- a/opcodes/tic30-dis.c +++ b/opcodes/tic30-dis.c @@ -302,10 +302,17 @@ cnvt_tmsfloat_ieee (unsigned long tmsfloat, int size, float *ieeefloat) { if (mant == 0) *ieeefloat = ERANGE; +#ifdef HUGE_VALF + if (sign == 0) + *ieeefloat = HUGE_VALF; + else + *ieeefloat = -HUGE_VALF; +#else if (sign == 0) *ieeefloat = 1.0 / 0.0; else *ieeefloat = -1.0 / 0.0; +#endif return 1; } exp >>= 1; -- cgit v1.2.1