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
Reverting merge from trunk
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr53881-1.c
blob
435d938a4009968e755803ab7d97b0679092d867
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
int
a
,
b
;
5
void
6
fn1
()
7
{
8
int
c
;
9
switch
(
a
)
10
{
11
case
8
:
12
c
=
0
;
13
goto
Label
;
14
case
0
:
15
case
1
:
16
Label
:
17
break
;
18
default
:
19
b
=
0
;
20
}
21
}
22