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
2017-12-05 Richard Biener <rguenther@suse.de>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr71518.c
blob
6240ca8f2bfd8725f0048fdf3373157c7d88aaa7
1
/* PR tree-optimization/71518 */
2
/* { dg-options "-O3" } */
3
4
int
a
, *
b
[
9
],
c
,
d
,
e
;
5
6
static int
7
fn1
()
8
{
9
for
(
c
=
6
;
c
>=
0
;
c
--)
10
for
(
d
=
0
;
d
<
2
;
d
++)
11
{
12
b
[
d
*
2
+
c
] =
0
;
13
e
=
a
>
1
? :
0
;
14
if
(
e
==
2
)
15
return
0
;
16
}
17
return
0
;
18
}
19
20
int
21
main
()
22
{
23
fn1
();
24
return
0
;
25
}