(emovo): Use separate variable for loop index.
authorRichard Kenner <kenner@gcc.gnu.org>
Mon, 31 Jan 1994 23:43:28 +0000 (18:43 -0500)
committerRichard Kenner <kenner@gcc.gnu.org>
Mon, 31 Jan 1994 23:43:28 +0000 (18:43 -0500)
From-SVN: r6448

gcc/real.c

index 2dfac5cb134fbfdc7f6769749da99da0a8409eb8..7ac191af1a50fcd31b6d956b7279d5d42be36d8f 100644 (file)
@@ -1536,6 +1536,7 @@ emovo (a, b)
 {
   register unsigned EMUSHORT *p, *q;
   unsigned EMUSHORT i;
+  int j;
 
   p = a;
   q = b + (NE - 1);            /* point to output exponent */
@@ -1562,7 +1563,7 @@ emovo (a, b)
   /* skip over guard word */
   ++p;
   /* move the significand */
-  for (i = 0; i < NE - 1; i++)
+  for (j = 0; j < NE - 1; j++)
     *q-- = *p++;
 }