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/78788] [7 Regression] ICE (segfault) on s390x-linux-gnu


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

--- Comment #4 from Matthias Klose <doko at gcc dot gnu.org> ---
$ cat ghosts.i
int a;
long b;
long c;
void d() {
  int e = 0;
  for (; b; b++)
    if (c) {
      e++;
      e++;
    }
  while (e)
    a = e -= 2;
}

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