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
Daily bump.
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
tree-ssa
/
pr34635-1.c
blob
5afc6db27263b231a42edda125cbcd27892c89f0
1
/* { dg-do compile } */
2
/* { dg-options "-O3" } */
3
4
void
foo
(
int
x
[])
5
{
6
int
i
,
j
;
7
8
for
(
i
=
0
;
i
<
2
;
i
++)
9
for
(
j
=
0
;
j
<
2
;
j
++)
10
{
11
x
[
i
] =
x
[
i
+
j
];
12
x
[
i
] =
x
[
i
+
j
];
13
}
14
}