Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.dg / vect / nodump-pr23073.c
blobd13279919ab3a73115fdd1e7301c08166dc1d52b
1 /* { dg-do compile } */
2 /* { dg-require-effective-target vect_int } */
4 extern struct {
5 int o[2];
6 int p[2];
7 } d;
9 void C()
11 int i;
13 for( i=0; i<2; ++i )
15 d.o[i] = 0;
16 d.p[i] = 0;
18 return;