blob: cf7d76fa0ea1e31de685f9af308cd1e6b34b3ccf [file] [log] [blame]
/* 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 ();
}