2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr23816-1.c
blob216c4eb7a9e1ea2ab1a158eb7e8a4229b713e445
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_condition } */
4 void
5 foo (float a[32], float 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];