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.target
/
i386
/
unroll-1.c
blob
e681474725a398d5326c31778341d03af8278990
1
/* PR optimization/8599 */
2
/* { dg-do run { target i?86-*-* x86_64-*-* } } */
3
/* { dg-require-effective-target ilp32 } */
4
/* { dg-options "-mtune=k6 -O2 -funroll-loops" } */
5
6
extern
void
exit
(
int
);
7
8
void
*
array
[
4
];
9
10
int
main
()
11
{
12
int
i
;
13
14
for
(
i
=
0
;
i
<
4
;
i
++)
15
array
[
i
] =
0
;
16
17
exit
(
0
);
18
}