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
libcpp, c, middle-end: Optimize initializers using #embed in C
[official-gcc.git]
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
pr32366.c
blob
cc1cd72f136d983bc95d736e8610345f3f4e2156
1
/* Testcase by Martin Michlmayr <tbm@cyrius.com> */
2
3
/* { dg-do compile } */
4
/* { dg-require-effective-target vect_float } */
5
6
void
7
stream_test
(
void
)
8
{
9
static float
input
[
20
];
10
int
k
;
11
for
(
k
=
0
;
k
<
20
;
k
++)
12
input
[
k
] =
k
*
1.0
;
13
}
14