blob: 76705a529848f1ec98ab195d8ac7543a05e7e740 [file] [log] [blame]
/* { dg-do compile { target { ! ia32 } } } */
/* { dg-require-effective-target maybe_x32 } */
/* { dg-require-effective-target fpic } */
/* { dg-options "-O2 -fpic -mx32" } */
extern void (*bar) (void);
void
foo (int n)
{
int i;
for (i = 0; i < n; i++)
{
if (!bar)
continue;
(*bar) ();
}
}