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
/
pr49994-1.c
blob
62ac23bfc373644e9dfc78c5b8b994ed43c92cd0
1
/* { dg-do compile } */
2
/* { dg-options "-Os -fsched2-use-superblocks -g" } */
3
/* { dg-require-effective-target nonlocal_goto } */
4
5
void
x
(
int
a
)
6
{
7
__label__ xlab
;
8
void
y
(
int
b
)
9
{
10
switch
(
b
)
11
{
12
case
1
:
13
goto
xlab
;
14
case
2
:
15
goto
xlab
;
16
}
17
}
18
y
(
a
);
19
xlab
:;
20
}