Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / pr23816-2.c
blob408eb49728d7073eabf38d226822fdf015868b01
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_condition } */
4 void
5 foo (double a[32], double b[2][32])
7 int i;
8 for (i = 0; i < 32; i++)
9 a[i] = (b[0][i] > b[1][i]) ? b[0][i] : b[1][i];
12 /* { dg-final { cleanup-tree-dump "vect" } } */