real.c (c4xtoe): Remove unused variables.
authorMichael Hayes <m.hayes@elec.canterbury.ac.nz>
Thu, 8 Oct 1998 03:29:02 +0000 (03:29 +0000)
committerJeff Law <law@gcc.gnu.org>
Thu, 8 Oct 1998 03:29:02 +0000 (21:29 -0600)
        * real.c (c4xtoe): Remove unused variables.  Add some missing parens.
        (toc4x): Similarly.

From-SVN: r22909

gcc/ChangeLog
gcc/real.c

index d7d849048b268231675f80aec0e598265a9e779b..5547630e0553342eda938abcb329063db58e93b2 100644 (file)
@@ -1,3 +1,8 @@
+Thu Oct  8 04:26:20 1998  Michael Hayes <m.hayes@elec.canterbury.ac.nz>
+
+       * real.c (c4xtoe): Remove unused variables.  Add some missing parens.
+       (toc4x): Similarly.
+
 Thu Oct  8 01:25:22 1998  Richard Henderson  <rth@cygnus.com>
 
        * flow.c (find_basic_blocks): Calc upper bound for extra nops in
index ed854e02625a74b1d95e79e2ecee4be2f7977ace..63badc48cd7024e25406bb082cf04b15dde8fba0 100644 (file)
@@ -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;