blob: f5c1a40df861176eac40b03a6d0aff96a033f40d [file] [log] [blame]
/* { dg-require-effective-target untyped_assembly } */
void
foo (x, fn)
void (*fn) ();
{
int a = baz ((void *) 0, x);
(*fn) (x, 0);
}
void
bar (void)
{
void *x = 0;
foo (x);
}