Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 20030920-1.c
blob2d22115c9fd92141744202e32863b961267a4aff
1 extern void abort (void);
3 int main()
5 int hicount = 0;
6 unsigned char *c;
7 char *str = "\x7f\xff";
8 for (c = (unsigned char *)str; *c ; c++) {
9 if (!(((unsigned int)(*c)) < 0x80)) hicount++;
11 if (hicount != 1)
12 abort ();
13 return 0;