]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gcc.dg/pr48213.c
replace ISL with isl
[thirdparty/gcc.git] / gcc / testsuite / gcc.dg / pr48213.c
CommitLineData
2f36e14b
JJ
1/* PR target/48213 */
2/* { dg-do compile } */
3/* { dg-options "-g -O2" } */
4/* { dg-options "-g -O2 -fpic" { target fpic } } */
5
6struct S { int (*s) (void); };
7int bar (void);
8
9void
10foo (struct S *x)
11{
12 if (x->s != bar)
13 bar ();
14}