i386: Adjust rtx cost for imulq and imulw [PR115749]
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr26359.c
blob5b445a9bda7499554d2fd9b07ff92a9328773b82
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3 /* { dg-additional-options "-fdump-tree-dce6-details" } */
5 int a[256], b[256], c[256];
7 void
8 foo () {
9 int i;
11 for (i=0; i<256; i++){
12 a[i] = b[i] + c[i];
16 /* { dg-final { scan-tree-dump-times "Deleting : vect_" 0 "dce6" } } */