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
[C++ PATCH] Deprecate -ffriend-injection
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr53881-2.c
blob
f6f8f8bcb398f66b757df01b5223eccfeb172528
1
/* { dg-do compile } */
2
/* { dg-options "-O2" } */
3
4
int
a
,
b
,
c
;
5
void
6
fn1
()
7
{
8
switch
(
a
)
9
{
10
case
0
:
11
case
10
:
12
b
=
c
;
13
out_bcon
:
14
break
;
15
case
3
:
16
goto
out_bcon
;
17
}
18
}
19