This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug tree-optimization/83914] [8 Regression] ice in vect_is_simple_use with -O3


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

--- Comment #2 from David Binderman <dcb314 at hotmail dot com> ---
Reduced code is

struct {
  int *a[8]
} * b;
c;
*d;
e() {
  int f;
  for (; f; b = d, f--) {
    d = b + 1;
    c = 8;
    for (; c; c--)
      b->a[c] = d;
  }
}

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]