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

--- Comment #12 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Reduced testcase with -O2 -fconserve-stack:

void bar (char *);

void
foo (void)
{
  char buf[70] = "";
  bar (buf);
}

Reply via email to