PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / nested-func-5.c
blob3545f37e5cc11dad0a16346cb375313d63ec4e81
1 /* { dg-do compile } */
2 /* { dg-options "-fexceptions" } */
3 /* PR28516: ICE generating ARM unwind directives for nested functions. */
4 /* { dg-require-effective-target trampolines } */
6 void ex(int (*)(void));
7 void foo(int i)
9 int bar(void)
11 return i;
13 ex(bar);