1 2 3 4 5 6 7 8 9 10 11 12 13 14
/* PR target/48213 */ /* { dg-do compile } */ /* { dg-options "-g -O2" } */ /* { dg-options "-g -O2 -fpic" { target fpic } } */ struct S { int (*s) (void); }; int bar (void); void foo (struct S *x) { if (x->s != bar) bar (); }