when lowering 64bit Conds, construct new Cmps/Conds in the block of the Cond, not...
[libfirm] / ir / be / test / types2.c
1 int main(void) {
2   int i = 13957;
3   unsigned char c = printf("");
4
5   i |= (c ? 0xffffff00 : 0xd3);
6   printf("i: %d\n", i);
7   return 0;
8 }