blob: 6096817346906ac9029d51f0e92f1a52f6b7abf9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* { dg-do compile } */
/* { dg-require-effective-target vect_int } */
int a, b, c[10];
void
foo (unsigned int x, int y, int z, int *w)
{
do
{
*w = z;
y = x;
if (y)
for (b = -4; b; b++)
{
z = y &= a &= 1;
y &= c[b + 4];
}
}
while (1);
}
/* { dg-final { cleanup-tree-dump "vect" } } */
|