blob: cf7d76fa0ea1e31de685f9af308cd1e6b34b3ccf (
plain)
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 ();
}
|