[Bug c/92891] ice in decompose, at wide-int.h:984

dcb314 at hotmail dot com gcc-bugzilla@gcc.gnu.org
Tue Dec 10 16:47:00 GMT 2019


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

--- Comment #1 from David Binderman <dcb314 at hotmail dot com> ---
Reduced C code:

int a, b;
int *c() __attribute__((alloc_size(1)));
void d() {
  char *e = c(1);
  while (a) {
    if (b <= 0)
      continue;
    e[b] = 0;
  }
}


More information about the Gcc-bugs mailing list