From 239b043b8a50413a663bfa220dbde9f3dba44fef Mon Sep 17 00:00:00 2001 From: Richard Kenner Date: Mon, 31 Jan 1994 18:43:28 -0500 Subject: [PATCH] (emovo): Use separate variable for loop index. From-SVN: r6448 --- gcc/real.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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++; } -- 2.30.2