repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
nested-func-5.c
blob
3545f37e5cc11dad0a16346cb375313d63ec4e81
1
/* { dg-do compile } */
2
/* { dg-options "-fexceptions" } */
3
/* PR28516: ICE generating ARM unwind directives for nested functions. */
4
/* { dg-require-effective-target trampolines } */
5
6
void
ex
(
int
(*)(
void
));
7
void
foo
(
int
i
)
8
{
9
int
bar
(
void
)
10
{
11
return
i
;
12
}
13
ex
(
bar
);
14
}