fixed comment: get_call_abi() get the call type, NOT the method type of the called...
[libfirm] / ir / be / test / reassoc.c
1 int a = 0;
2 int b = 3;
3
4 int main() {
5         int res = (a-b) * (a-b);
6         printf("%d\n", res);
7         return 0;
8 }