diff options
Diffstat (limited to 'gcc/real.c')
-rw-r--r-- | gcc/real.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gcc/real.c b/gcc/real.c index 2dfac5cb134..7ac191af1a5 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++; } |