Add compile command to each testcase
[gcc-vect-testsuite.git] / pr45847.c
blobf34caa1d0e5d752424a5e776eb157aeeeef715bf
1 /* { dg-do compile } */
4 long long foo (long long *__restrict a, int *__restrict b, int *__restrict c )
6 int i;
7 long long sum=0;
8 for (i=0;i<256;i++)
9 sum += (long long)b[i] * c[i];
11 return sum;
14 /* { dg-final { cleanup-tree-dump "vect" } } */