fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / fehler030.c
1 #include <stdio.h>
2
3 int k = 123;
4
5 int main()
6 {
7         if(k & 16) {
8                 puts("correct");
9                 return 0;
10         }
11         return 1;
12 }