PR middle-end/77357 - strlen of constant strings not folded
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / no-trapping-math-1.c
blobd682387038e7883521393d732bce1af779465fff
1 /* Test for pr30485. */
2 /* { dg-do compile } */
3 /* { 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];