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

--- Comment #4 from Richard Biener <rguenth at gcc dot gnu.org> ---
C testcase:

void foo();

void bar(int i)
{
  foo (i);
}

void foo(int *p)
{
  *p = 0;
}

Reply via email to