Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20011019-1.c
blobebaa411c4101bfbd9468962cc026e7b79bf0a501
1 extern void exit (int);
2 extern void abort (void);
4 struct { int a; int b[5]; } x;
5 int *y;
7 int foo (void)
9 return y - x.b;
12 int main (void)
14 y = x.b;
15 if (foo ())
16 abort ();
17 exit (0);