eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / fehler050.c
1 #include <stdio.h>
2
3 void te(int *bla) {
4         int *blup = bla;
5
6         while(blup) {
7                 switch(*blup) {
8                 case 20:
9                         printf("Joa: %d\n", *(blup+1));
10                         blup = 0;
11                         break;
12                 }
13         }
14 }
15
16 int main()
17 {
18         int arr[] = { 20, 2, 4, 5, 6, 8 };
19
20         te(arr);
21
22         return 0;
23 }