From: Richard Kenner Date: Mon, 31 Jan 1994 23:43:28 +0000 (-0500) Subject: (emovo): Use separate variable for loop index. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=239b043b8a50413a663bfa220dbde9f3dba44fef;p=gcc.git (emovo): Use separate variable for loop index. From-SVN: r6448 --- 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++; }