Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 921123-1.c
blobd3daf120f0a4d911d612a48e402ac8f2cb5d5725
1 f(short *p)
3 short x = *p;
4 return (--x < 0);
7 main()
9 short x = -10;
10 if (!f(&x))
11 abort();
12 exit(0);