aboutsummaryrefslogtreecommitdiff
path: root/opcodes
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2005-07-04 17:51:36 +0000
committerH.J. Lu <hjl.tools@gmail.com>2005-07-04 17:51:36 +0000
commitb0eec63e04b6769048c6a4b14d180a7e09c7d104 (patch)
tree2d367bcd5a4f1b342123e225397f7399b37232de /opcodes
parent9a5c4b9eb20e1c9a8f5a1843a77e16b484ae9126 (diff)
downloadfsf-binutils-gdb-b0eec63e04b6769048c6a4b14d180a7e09c7d104.zip
fsf-binutils-gdb-b0eec63e04b6769048c6a4b14d180a7e09c7d104.tar.gz
fsf-binutils-gdb-b0eec63e04b6769048c6a4b14d180a7e09c7d104.tar.bz2
2005-07-04 H.J. Lu <hongjiu.lu@intel.com>
* tic30-dis.c (cnvt_tmsfloat_ieee): Use HUGE_VALF if defined.
Diffstat (limited to 'opcodes')
-rw-r--r--opcodes/ChangeLog4
-rw-r--r--opcodes/tic30-dis.c7
2 files changed, 11 insertions, 0 deletions
diff --git a/opcodes/ChangeLog b/opcodes/ChangeLog
index 2269c7c..605766a 100644
--- a/opcodes/ChangeLog
+++ b/opcodes/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-04 H.J. Lu <hongjiu.lu@intel.com>
+
+ * tic30-dis.c (cnvt_tmsfloat_ieee): Use HUGE_VALF if defined.
+
2005-07-01 Nick Clifton <nickc@redhat.com>
* a29k-dis.c: Update to ISO C90 style function declarations and
diff --git a/opcodes/tic30-dis.c b/opcodes/tic30-dis.c
index eac6c45..9e57050 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;