repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
No empty .Rs/.Re
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
Wunreachable-5.c
blob
11dc3204da1178b4c93b911d085112abc9c94ab5
1
/* PR c/10175 */
2
3
/* { dg-do compile } */
4
/* { dg-options "-Wunreachable-code" } */
5
6
int
value
;
7
8
int
main
(
void
)
9
{
10
if
(
0
)
11
value
=
0
;
/* { dg-warning "will never be executed" "" } */
12
else
13
value
=
1
;
14
15
return
0
;
16
}
17