repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Sync usage with man page.
[netbsd-mini2440.git]
/
gnu
/
dist
/
gcc4
/
gcc
/
testsuite
/
gcc.dg
/
vect
/
vect-99.c
blob
288f2ae8daf250fa840ecf516afa6f88d5fe2c0c
1
/* { dg-require-effective-target vect_int } */
2
3
int
ca
[
100
];
4
5
void
foo
(
int
n
)
6
{
7
unsigned int
i
;
8
9
for
(
i
=
0
;
i
<
n
;
i
++)
10
ca
[
i
] =
2
;
11
}
12
13
int
main
(
void
)
14
{
15
return
0
;
16
}
17
18
/* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" } } */
19
/* { dg-final { cleanup-tree-dump "vect" } } */