blob: ac89883de22c9f647041fb373618dae5b7c036f3 [file] [log] [blame]
/* { dg-do run } */
/* { dg-additional-options "-O3 -w -Wno-psabi" } */
#include "tree-vect.h"
int res[6] = { 5, 7, 11, 3, 3, 3 };
int a[6] = {5, 5, 8};
int c;
int main()
{
check_vect ();
for (int b = 0; b <= 4; b++)
for (; c <= 4; c++) {
a[0] |= 1;
for (int e = 0; e <= 4; e++)
a[e + 1] |= 3;
}
for (int d = 0; d < 6; d++)
if (a[d] != res[d])
__builtin_abort ();
return 0;
}