PR inline-asm/84742
[official-gcc.git] / gcc / testsuite / gcc.target / i386 / pr66232-5.c
blob87f93802694fe9c4b664838d7f3e3e783c9871d1
1 /* { dg-do compile { target { ! ia32 } } } */
2 /* { dg-require-effective-target maybe_x32 } */
3 /* { dg-options "-O2 -fpic -mx32" } */
5 extern void (*bar) (void);
6 void
7 foo (int n)
9 int i;
10 for (i = 0; i < n; i++)
12 if (!bar)
13 continue;
14 (*bar) ();