when lowering 64bit Conds, construct new Cmps/Conds in the block of the Cond, not...
[libfirm] / ir / be / test / addn.c
1 int x = 1;
2
3 int main() {
4         int a = x + x + x + x;
5
6         printf("A = %d\n", a);
7         return 0;
8 }