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
/
pr56264.c
blob
ca5eb47ff6b88489306f22bb542cc6d6026935af
1
/* { dg-do compile } */
2
/* { dg-options "-funswitch-loops" } */
3
4
int
a
,
b
,
c
;
5
6
void
f
(
void
)
7
{
8
if
(
b
)
9
{
10
for
(
a
=
0
;
a
<
1
;
a
++)
11
lbl
:
12
c
=
c
&&
b
? :
0
;
13
14
c
=
0
;
15
goto
lbl
;
16
}
17
18
if
(
a
)
19
goto
lbl
;
20
}