On Sun, May 7, 2017 at 11:22 AM, Fredrik Hederstierna
wrote:
> Hi,
>
> I have a question about loop induction variables, related to
>
> https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67213
>
> Consider a simple loop like
>
> int ix;
> for (ix = 0; ix &l
Hi,
I have a question about loop induction variables, related to
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=67213
Consider a simple loop like
int ix;
for (ix = 0; ix < 6; ix++) {
data[ix] = ix;
}
In this case variable 'ix' is used as counting variable for array in