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
Fix unused warnings.
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr42299.c
blob
5a9199f274a337e9eba9d4c8c19886a92867ee63
1
/* { dg-options "-g" } */
2
3
static int
4
foo
(
int
x
,
int
y
)
5
{
6
if
(
y
)
7
goto
lab
;
8
if
(
x
)
9
y
=
0
;
10
if
(
y
)
11
goto
lab
;
12
y
=
0
;
13
lab
:
14
return
y
;
15
}
16
17
void
18
baz
(
int
x
,
int
y
)
19
{
20
y
=
foo
(
x
,
y
);
21
if
(
y
!=
0
)
22
bar
();
23
}