i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr30771.c
blob291df2371cb3e8dc6dfc07f9e8c355755d6e8d5f
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 int a[128];
6 int
7 main()
9 short i;
11 for (i=0; i<64; i++){
12 a[i] = (int)i;
14 return 0;
17 /* { dg-final { scan-tree-dump-times "vectorized 1 loops" 1 "vect" { target vect_unpack } } } */