From 204bdce0016348fa537db98a5ebb29d6ffd1d30b Mon Sep 17 00:00:00 2001 From: kenner Date: Mon, 31 Jan 1994 23:43:28 +0000 Subject: (emovo): Use separate variable for loop index. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@6448 138bc75d-0d04-0410-961f-82ee72b054a4 --- gcc/real.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'gcc/real.c') 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++; } -- cgit v1.2.1