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
* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
Wunreachable-4.c
blob
38ae6f808c949b364a4fcc4798dc2cec3b889d86
1
/* PR middle-end/10336 */
2
/* { dg-options "-Wunreachable-code" } */
3
4
void
foo
(
int
i
)
5
{
6
switch
(
i
) {
7
case
0
:
8
break
;
9
case
1
:
10
break
;
11
}
12
}