fixed lots of warnings in testprograms
[libfirm] / ir / be / test / Test.c
1 #include <stdio.h>
2
3 void processOutputs() {
4   switch(1) {
5   case 0:
6       if( 1 ) {
7           printf("1\n");
8       }
9       else {
10           printf("0\n");
11       }
12   }
13 }
14
15 int main(int argc, char *argv[]) {
16   printf("Test.c\n");
17
18   processOutputs();
19
20   printf(" Ok\n");
21
22   return 0;
23 }