repo.or.cz
/
gcc-vect-testsuite.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add compile command to each testcase
[gcc-vect-testsuite.git]
/
pr30771.c
blob
e9f4bd2abc77bb2f7fb6bd85cf9daa0a0cbad597
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 } } } */
18
/* { dg-final { cleanup-tree-dump "vect" } } */