Add compile command to each testcase
[gcc-vect-testsuite.git] / param-max-aliased-pr26197.cc
blob198cd6b53ac10b825fd081fa9b65c994a2412e10
1 /* { dg-do compile } */
3 void g(const void*);
4 struct B
6 int* x[2];
7 int *p;
8 B()
10 for (int** p=x; p<x+4; ++p)
11 *p = 0;
13 ~B()
15 g(p);
18 void bar()
20 const B &b = B();
21 g(&b);
24 /* { dg-final { cleanup-tree-dump "vect" } } */