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
IVOPT performance tuning patch. The main problem is a variant of maximal weight
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr32366.c
blob
e83d579e946d556dff87697e7bc5883aeb3213c6
1
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
2
3
/* { dg-do compile } */
4
/* { dg-require-effective-target vect_float } */
5
6
stream_test
(
void
)
7
{
8
static float
input
[
20
];
9
int
k
;
10
for
(
k
=
0
;
k
<
20
;
k
++)
11
input
[
k
] =
k
*
1.0
;
12
}
13
14
/* { dg-final { cleanup-tree-dump "vect" } } */