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

--- Comment #3 from Ivo Raisr <ivo.raisr at oracle dot com> ---
$ cat reduced.c 
extern void c(int);
extern void d(void);

void a(void) {
  {
    int b;
    &b;
    __builtin_setjmp(0);
    c(b);
  }
  d();
}

Reply via email to