eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / nullnode.c
1 struct foo {
2   int bar;
3 };
4
5 struct foo *curcmd;
6 int tmps_max;
7 int tmps_base;
8
9 #define CF_FLIP 020000
10 #define CF_COND 01000
11
12 int main() {
13     struct foo *cmd;
14     int cmdflags;
15
16     if (cmdflags & CF_COND) {
17
18     goto maybe;
19     flipmaybe:
20         if (cmdflags) {
21             while (tmps_max > tmps_base) {      /* clean up after last eval */
22             }
23         }
24     maybe:
25       curcmd = cmd;
26     }
27
28     return 0;
29 }