i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr97558.c
blobfef96239aa0ef4e5f4b340c2002681ea9a73c69b
1 /* { dg-do compile } */
2 /* { dg-additional-options "-fno-tree-dce -Ofast" } */
4 long int x1;
5 int fr;
7 int
8 us (int sk, int jx)
10 while (sk < 1)
12 jx *= 2;
13 fr += x1 + 1;
14 ++sk;
17 return jx;