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-113.c
blob
e09a16b365574ec4b12406bff801fc9da8422df5
1
/* { dg-require-effective-target vect_float } */
2
3
#include <stdarg.h>
4
#include
"tree-vect.h"
5
6
#define N 16
7
8
int
9
main1
(
void
)
10
{
11
int
i
;
12
float
a
[
N
];
13
14
/* Induction. */
15
for
(
i
=
0
;
i
<
N
;
i
++)
16
{
17
a
[
i
] =
i
;
18
}
19
20
for
(
i
=
0
;
i
<
N
;
i
++)
21
{
22
if
(
a
[
i
] !=
i
)
23
abort
();
24
}
25
26
return
0
;
27
}
28
29
int
main
(
void
)
30
{
31
check_vect
();
32
return
main1
();
33
}
34
35
/* { dg-final { scan-tree-dump-times "vectorized 0 loops" 1 "vect" } } */
36
/* { dg-final { cleanup-tree-dump "vect" } } */