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
/
pr70771.c
blob
fea0c5ae3928771b8f77d244d90e33a03f45cc92
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
a
,
b
,
c
,
d
;
5
6
static void
7
fn1
()
8
{
9
for
(
b
=
0
;
b
<
1
;
b
++)
10
for
(
c
=
0
;
c
<
1
;
c
++)
11
{
12
if
(
a
)
13
break
;
14
b
=
1
;
15
}
16
for
(;;)
17
;
18
}
19
20
int
21
main
()
22
{
23
if
(
d
)
24
fn1
();
25
return
0
;
26
}