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

--- Comment #1 from Sam James <sjames at gcc dot gnu.org> ---
Reduced:
```
int *a;
int b;
long c, d;
void(e)(int f) {
  for (; f; f++) {
    d += (long)a[f] * b;
    c += (long)a[f] * 3;
  }
}
```

Reply via email to