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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
torture
/
pr64083.c
blob
3c3e5a6087a52a6db8abba28ae37070508dfe7d9
1
/* { dg-do compile } */
2
3
int
a
,
b
;
4
void
5
fn1
()
6
{
7
int
c
=
0
;
8
while
(
b
)
9
{
10
switch
(
c
)
11
case
1
:
12
fn1
();
13
if
(
a
)
14
c
=
1
;
15
b
=
0
;
16
}
17
}