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
2018-11-28 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr78725-2.c
blob
9de489edda80f8dc3a64e8554895089f1f5c5c25
1
/* { dg-do run } */
2
/* { dg-options "-O3 -fsplit-loops" } */
3
4
int
a
,
b
,
c
;
5
6
int
main
()
7
{
8
int
d
;
9
for
(;
c
<
1
;
c
++)
10
for
(
d
=
0
;
d
<
3
;
d
++)
11
for
(
b
=
0
;
b
<
1
;
b
++)
12
if
(
c
>=
d
)
13
a
=
1
;
14
15
if
(
a
!=
1
)
16
__builtin_abort
();
17
18
return
0
;
19
}