Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 990106-1.c
blob6631bfd96cb58bd1cfa5e85628d035712849f08e
1 foo(bufp)
2 char *bufp;
4 int x = 80;
5 return (*bufp++ = x ? 'a' : 'b');
8 main()
10 char x;
12 if (foo (&x) != 'a')
13 abort ();
15 exit (0);