- Loading...
...
original loop |
|---|
for (int i = init, i < limit; i += stride) { // loop with array range check |
|
after loop predication |
|---|
if ( scale * imax + offset < a.length ) { // loop predicate. imax is the maximum value of i where init <= i < limit |