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
* tree-loop-distribution.c (INCLUDE_ALGORITHM): New header file.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr56466.c
blob
9d9e27356e6ca3f0e7e91810c86b8aab1a9b7a09
1
/* PR rtl-optimization/56466 */
2
/* { dg-do compile } */
3
/* { dg-options "-O2 -w -funroll-loops" } */
4
5
int
a
,
b
,
c
;
6
7
void
8
f
(
void
)
9
{
10
for
(;
b
;
b
++)
11
{
12
if
(
0
)
13
for
(;
b
<
0
;
b
++)
14
if
(
1
%
0
)
15
{
16
while
(
1
)
17
{
18
a
=
0
;
19
lbl1
:
20
c
++;
21
}
22
lbl2
:
23
;
24
}
25
26
goto
lbl1
;
27
}
28
29
a
=
0
;
30
goto
lbl2
;
31
}