Sign in
llvm
/
llvm-archive
/
58b05407658c2569b188facf1d1f15e1c0e95aa4
/
.
/
clang-tests
/
gcc-4_2-testsuite
/
ignored
/
gcc.dg
/
vect
/
pr22506.c
blob: 5a2d74995cee7858962fafea2755bc5142e54868 [
file
] [
log
] [
blame
]
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
float
x
[
3
];
void
foo
()
{
int
i
;
for
(
i
=
0
;
i
<
5
;
++
i
)
x
[
i
]=
0
;
for
(
i
=
0
;
i
<
4
;
++
i
)
;
}
/* { dg-final { cleanup-tree-dump "vect" } } */