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

--- Comment #2 from Richard Biener <rguenth at gcc dot gnu.org> ---
Another testcase would be like

int foo (void **ret)
{
  *ret = NULL;
  return 0;
}

int bar ()
{
  void *dummy;
  return bar (&dummy);
}


int main()
{
  void *dummy;
  if (!foo (&dummy))
    return 0;
  abort ();
}

and ret/dummy can be elided.  I've included the twist that we pass two
different
'dummy' (but I understand IPA SRA works per call and doesn't try "sharing"
the clones?)

Reply via email to