Commit 239b043b by Richard Kenner

(emovo): Use separate variable for loop index.

From-SVN: r6448
parent 7a75868d
...@@ -1536,6 +1536,7 @@ emovo (a, b) ...@@ -1536,6 +1536,7 @@ emovo (a, b)
{ {
register unsigned EMUSHORT *p, *q; register unsigned EMUSHORT *p, *q;
unsigned EMUSHORT i; unsigned EMUSHORT i;
int j;
p = a; p = a;
q = b + (NE - 1); /* point to output exponent */ q = b + (NE - 1); /* point to output exponent */
...@@ -1562,7 +1563,7 @@ emovo (a, b) ...@@ -1562,7 +1563,7 @@ emovo (a, b)
/* skip over guard word */ /* skip over guard word */
++p; ++p;
/* move the significand */ /* move the significand */
for (i = 0; i < NE - 1; i++) for (j = 0; j < NE - 1; j++)
*q-- = *p++; *q-- = *p++;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment