* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr24059.c
blob0849d15c95f3ce41a8bc066e9f9ed8e06efcbf64
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_condition } */
4 struct pred_data
6 unsigned char codes[((int) 100)];
7 };
9 void compute_predicate_codes (char *codes, struct pred_data *p)
11 int i;
12 for (i = 0; i < ((int) 100); i++)
13 codes[i] = p->codes[i] ? 2 : 0;
16 /* { dg-final { cleanup-tree-dump "vect" } } */