when lowering 64bit Conds, construct new Cmps/Conds in the block of the Cond, not...
[libfirm] / ir / be / test / fehler075.c
1 /*$ -fno-inline -fno-if-conv $*/
2
3 long long k(long long a)
4 {
5         return a < 0 ? -a : a;
6 }
7
8 int main(void)
9 {
10         printf("%lld\n", k(0x80000000LL));
11         return 0;
12 }