i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / vect-cond-12.c
blob1add96afe4500da416b8b3cc610f465f1b9dbc4b
1 /* { dg-do compile } */
3 int
4 f (int *x, short *y)
6 int res = 100;
7 for (int i = 0; i < 40; ++i)
9 if (y[i] > 1)
10 res = x[i];
11 x[i] += y[i];
13 return res;