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

--- Comment #4 from Marek Polacek <mpolacek at gcc dot gnu.org> ---
Reduced:

struct S
{
  int s;
};

void fn2 (void);

void
fn1 ()
{
  extern void a;
  struct S *b = &a;
  if (b->s)
    fn2 ();
}

Reply via email to