summaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorMichael Hayes <m.hayes@elec.canterbury.ac.nz>1998-10-08 03:29:02 +0000
committerJeff Law <law@gcc.gnu.org>1998-10-07 21:29:02 -0600
commiteba0c7243e08459f3b7210bb4c2cdb550712a999 (patch)
treede25fa22d9bcfcbc7c5bd9abc52f073494b6b68d /gcc/real.c
parent5c35539b1ab41da8800ebb1fdc983237a7d9cdd7 (diff)
downloadgcc-eba0c7243e08459f3b7210bb4c2cdb550712a999.tar.gz
real.c (c4xtoe): Remove unused variables.
* real.c (c4xtoe): Remove unused variables. Add some missing parens. (toc4x): Similarly. From-SVN: r22909
Diffstat (limited to 'gcc/real.c')
-rw-r--r--gcc/real.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/gcc/real.c b/gcc/real.c
index ed854e02625..63badc48cd7 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -5868,7 +5868,6 @@ c4xtoe (d, e, mode)
{
unsigned EMUSHORT y[NI];
int r;
- int rndsav;
int isnegative;
int size;
int i;
@@ -5960,7 +5959,7 @@ c4xtoe (d, e, mode)
/* Now do the high order mantissa strip off the exponent and sign
bits and add the high 1 bit. */
- y[M] = d[0] & 0x7f | 0x80;
+ y[M] = (d[0] & 0x7f) | 0x80;
y[M+1] = d[1];
if (mode != QFmode) /* There are only 2 words in QFmode. */
@@ -6005,7 +6004,6 @@ toc4x (x, y, mode)
enum machine_mode mode;
{
int i;
- int r;
int v;
int carry;