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-09-26 Thomas Koenig <tkoenig@gcc.gnu.org>
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
pr69619.c
blob
a200bdf310fc2c02b008e0c13fb9c917784423f8
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
int
a
,
b
,
c
,
d
;
5
int
e
[
100
];
6
void
7
fn1
()
8
{
9
int
*
f
= &
d
;
10
c
=
6
;
11
for
(;
c
;
c
--)
12
{
13
b
=
0
;
14
for
(;
b
<=
5
;
b
++)
15
{
16
short
g
=
e
[(
b
+
2
) *
9
+
c
];
17
*
f
= *
f
==
a
&&
e
[(
b
+
2
) *
9
+
c
];
18
}
19
}
20
}