[PATCH 01/11] Output CodeView data about variables
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990222-1.c
blobc34679f75283396dc5dd109ce4ec9f2ceacc6f7b
1 void abort(void);
3 char line[4] = { '1', '9', '9', '\0' };
5 int main()
7 char *ptr = line + 3;
9 while ((*--ptr += 1) > '9') *ptr = '0';
10 if (line[0] != '2' || line[1] != '0' || line[2] != '0')
11 abort();
12 return 0;