* testsuite/libgomp.fortran/vla7.f90: Add -w to options.
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-ifcvt-10.c
blob8a4b24ed4c7d271475724b49b296325639779305
1 /* PR 21272 */
2 /* { dg-do compile } */
3 double
4 foo (int j, double *v, double x)
6 int i;
7 for (i = 0; i < j; i++)
8 if (v[i] < x)
9 x = v[i];
10 return x;
12 /* { dg-final { cleanup-tree-dump "vect" } } */