eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / fehler001.c
1 int f(void)
2 {
3 label:
4         printf("bla\n");
5         goto label;
6
7         return 0;
8 }
9
10 int main(void)
11 {
12         return 0;
13 }