2018-01-16 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / gcc.dg / vect / pr79347.c
blob6825420ec8d040d597ba1976002d9f8b74ea0d6a
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
3 /* { dg-additional-options "-fdump-tree-vect-all" } */
5 short *a;
6 int c;
7 void n(void)
9 for (int i = 0; i<c;i++)
10 a[i]++;
13 /* { dg-final { scan-tree-dump-not "Invalid sum of " "vect" } } */