repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2016-12-21 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr37913.c
blob
98b8f647871f9bc6f45f386fb561d8d73542ab41
1
/* PR middle-end/37913 */
2
3
void
foo
(
void
)
__attribute__
((
noreturn
));
4
5
static int
__attribute__
((
noreturn
))
6
bar
(
void
)
7
{
8
foo
();
9
}
10
11
void
12
baz
(
void
)
13
{
14
int
i
=
bar
();
15
}