Moved global variable heights to ia32_common_transform.
[libfirm] / ir / be / test / fehler012.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         return 0;
11 }
12
13
14 void xyz (void) {
15         t++;
16 }