OSDN Git Service

PR preprocessor/30805:
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / gcc.dg / nested-func-5.c
1 /* { dg-do compile } */
2 /* { dg-options "-fexceptions" } */
3 /* PR28516: ICE generating ARM unwind directives for nested functions.  */
4
5 void ex(int (*)(void));
6 void foo(int i)
7 {
8   int bar(void)
9   {
10     return i;
11   }
12   ex(bar);
13 }