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
PR target/80969 - Fix ICE with -mabi=ms -mavx512f, reduce wasted space when realignin...
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.target
/
i386
/
unroll-1.c
blob
cc8132e207c6a1f4bde2981ebb076a1072b35b31
1
/* PR optimization/8599 */
2
/* { dg-do run } */
3
/* { dg-require-effective-target ia32 } */
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
}