repo.or.cz
/
official-gcc
/
graphite-test-results.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge from mainline (167278:168000).
[official-gcc/graphite-test-results.git]
/
gcc
/
testsuite
/
gcc.dg
/
graphite
/
pr46966.c
blob
ce2a93ca968930f5228c3056d678813ff38b78c1
1
/* PR tree-optimization/46966 */
2
/* { dg-do compile } */
3
/* { dg-options "-O -floop-interchange -ffast-math -fno-tree-copy-prop -fno-tree-loop-im" } */
4
5
int
a
[
1000
][
1000
];
6
7
void
foo
()
8
{
9
int
i
,
j
;
10
for
(
i
=
0
;
i
<
1000
;
i
++)
11
for
(
j
=
0
;
j
<
1000
;
j
++)
12
a
[
i
][
j
] =
0
;
13
}