Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / gcc.c-torture / execute / 990222-1.c
blob98b94f39860454ac6100beb9e899b453fdbb754c
1 char line[4] = { '1', '9', '9', '\0' };
3 int main()
5 char *ptr = line + 3;
7 while ((*--ptr += 1) > '9') *ptr = '0';
8 if (line[0] != '2' || line[1] != '0' || line[2] != '0')
9 abort();
10 return 0;