updated ignore pattern again ([^ch] doesn't work)
[libfirm] / ir / be / test / fehler12.c
1 void xyz (void);
2
3 int t = -1;
4
5 int main(void) {
6         printf("%d\n", t);
7         xyz();
8         printf("%d\n", t);
9 }
10
11
12 void xyz (void) {
13         t++;
14 }