blob: a63a03a870aecc7c443a18a836ff4e092964d257 [file] [log] [blame]
/* { dg-do compile } */
typedef void (*argmatch_exit_fn)();
int a;
void __argmatch_die () { __builtin_exit (0); }
int
main ()
{
while (1)
{
argmatch_exit_fn b = __argmatch_die;
if (a)
b ();
}
return 0;
}