https://gcc.gnu.org/bugzilla/show_bug.cgi?id=86991

--- Comment #9 from Tilir <konstantin.vladimirov at gmail dot com> ---
One more test case:

int b[11], e[11], c, d;
void f() {
  unsigned g, h;
  for (; g < 11; g += 2) {
    c = 2;
    for (; c; c += 3) {
      h = 1;
      for (; h < 11; h++)
        e[h] = e[h] + d - b[g];
    }
  }
}

Reply via email to