aboutsummaryrefslogtreecommitdiff
path: root/gcc/real.c
diff options
context:
space:
mode:
authorRichard Kenner <kenner@gcc.gnu.org>1994-01-31 18:43:28 -0500
committerRichard Kenner <kenner@gcc.gnu.org>1994-01-31 18:43:28 -0500
commit239b043b8a50413a663bfa220dbde9f3dba44fef (patch)
tree52856edc51b8358cae0fe480ae691a1cb2082b9b /gcc/real.c
parent7a75868d8eafc87c5b4f06bc60e0db43e074e23f (diff)
downloadgcc-239b043b8a50413a663bfa220dbde9f3dba44fef.zip
gcc-239b043b8a50413a663bfa220dbde9f3dba44fef.tar.gz
gcc-239b043b8a50413a663bfa220dbde9f3dba44fef.tar.bz2
(emovo): Use separate variable for loop index.
From-SVN: r6448
Diffstat (limited to 'gcc/real.c')
-rw-r--r--gcc/real.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/real.c b/gcc/real.c
index 2dfac5c..7ac191a 100644
--- a/gcc/real.c
+++ b/gcc/real.c
@@ -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++;
}