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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
loop-1.c
blob
81aeeb6b392c036da6e254acd795d07c5224d92f
1
main
()
2
{
3
int
i
,
j
,
k
[
3
];
4
5
j
=
0
;
6
for
(
i
=
0
;
i
<
3
;
i
++)
7
{
8
k
[
i
] =
j
++;
9
}
10
11
for
(
i
=
2
;
i
>=
0
;
i
--)
12
{
13
if
(
k
[
i
] !=
i
)
14
abort
();
15
}
16
17
exit
(
0
);
18
}