Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 931110-2.c
blob586615b180c03d743c38efa97d9cc8f374c39618
1 main ()
3 static int a[] = {3, 4};
4 register int *b;
5 int c;
7 b = a;
8 c = *b++ % 8;
9 if (c != 3)
10 abort ();
11 exit (0);