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
2018-06-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr51762.c
blob
9c59f338c7e36a1b2ba9e342b1cadccd9f45616c
1
/* PR debug/51762 */
2
/* { dg-do compile } */
3
/* { dg-options "-g -Os -fomit-frame-pointer -fno-asynchronous-unwind-tables" } */
4
5
void
noret
(
void
)
__attribute__
((
noreturn
));
6
int
bar
(
void
);
7
void
baz
(
const char
*);
8
static int
v
= -
1
;
9
10
void
11
foo
(
void
)
12
{
13
if
(
bar
() &&
v
== -
1
)
14
{
15
baz
(
"baz"
);
16
noret
();
17
}
18
noret
();
19
}