diff options
author | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-31 18:43:28 -0500 |
---|---|---|
committer | Richard Kenner <kenner@gcc.gnu.org> | 1994-01-31 18:43:28 -0500 |
commit | 239b043b8a50413a663bfa220dbde9f3dba44fef (patch) | |
tree | 52856edc51b8358cae0fe480ae691a1cb2082b9b /gcc/real.c | |
parent | 7a75868d8eafc87c5b4f06bc60e0db43e074e23f (diff) | |
download | gcc-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.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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++; } |