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
testsuite: Revert to the original version of pr100056.c
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr96920.c
blob
af5da4ae52e93f7d3195e45b39eb819b261c4891
1
/* { dg-do compile } */
2
3
int
a
[
1024
];
4
int
b
[
2048
];
5
6
void
foo
(
int
x
,
int
y
)
7
{
8
for
(
int
i
=
0
;
i
<
1024
; ++
i
)
9
{
10
int
tem0
=
b
[
2
*
i
];
11
int
tem1
=
b
[
2
*
i
+
1
];
12
for
(
int
j
=
0
;
j
<
32
; ++
j
)
13
{
14
int
tem
=
tem0
;
15
tem0
=
tem1
;
16
tem1
=
tem
;
17
a
[
i
] +=
tem0
;
18
}
19
}
20
}