fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / fehler017.c
1 #include <stdio.h>
2
3 char *p = "\xFF";
4
5 int main() {
6         printf("Result: %d (should be 255)\n", (unsigned char) (*p++));
7         return 0;
8 }