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
RISC-V: Add support for riscv-*-*.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr69209.c
blob
fd8046f217d18a2b1d8772f0b359a7a1e1ed46e2
1
/* PR tree-optimization/69209 */
2
3
int
a
,
c
, *
d
,
e
;
4
5
void
foo
(
void
)
__attribute__
((
__noreturn__
));
6
7
int
8
bar
(
void
)
9
{
10
int
f
;
11
if
(
a
)
12
{
13
if
(
e
)
14
foo
();
15
foo
();
16
}
17
if
(
d
!= &
f
)
18
foo
();
19
if
(!
c
)
20
foo
();
21
return
f
;
22
}
23
24
void
25
baz
()
26
{
27
bar
();
28
}