Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 930518-1.c
blob44bdf96afb739e6dd25fca7441e63d27aa7aaf6c
1 int bar = 0;
3 f (p)
4 int *p;
6 int foo = 2;
8 while (foo > bar)
10 foo -= bar;
11 *p++ = foo;
12 bar = 1;
16 main ()
18 int tab[2];
19 tab[0] = tab[1] = 0;
20 f (tab);
21 if (tab[0] != 2 || tab[1] != 1)
22 abort ();
23 exit (0);