blob: e6652fc95016730a185057c2fa43540eb9ac0f4e [file] [log] [blame]
/* { dg-do compile } */
/* APPLE LOCAL testsuite nested functions */
/* { dg-options "-fexceptions -fnested-functions" } */
/* PR28516: ICE generating ARM unwind directives for nested functions. */
void ex(int (*)(void));
void foo(int i)
{
int bar(void)
{
return i;
}
ex(bar);
}