i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / bb-slp-47.c
blob9583b09cfbd444f2d81332bcf6a6311fb69ccab1
1 /* { dg-do compile } */
3 int bar();
4 int foo (int *a, int b, int c)
6 int tem0 = bar ();
7 int tem1 = tem0 + b;
8 int tem3 = tem1 + c;
9 a[0] = tem3;
10 a[1] = tem3 + 1;
11 a[2] = tem3 + 2;
12 a[3] = tem3 + 3;
13 return tem1;