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
/
pr30771.c
blob
291df2371cb3e8dc6dfc07f9e8c355755d6e8d5f
1
/* { dg-do compile } */
2
/* { dg-require-effective-target vect_int } */
3
4
int
a
[
128
];
5
6
int
7
main
()
8
{
9
short
i
;
10
11
for
(
i
=
0
;
i
<
64
;
i
++){
12
a
[
i
] = (
int
)
i
;
13
}
14
return
0
;
15
}
16
17
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_unpack } } } */