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
/
pr84425.c
blob
5d3d325aa2324f1fc306421cb50054d4c1bd24c1
1
/* PR ipa/84425 */
2
3
void
bar
(
int
);
4
5
void
6
foo
(
int
x
)
7
{
8
if
(
x
<
5
)
9
bar
(
x
);
10
}
11
12
__attribute__
((
optimize
(
0
)))
void
13
bar
(
int
x
)
14
{
15
if
(
x
>
10
)
16
foo
(
x
);
17
}