when lowering 64bit Conds, construct new Cmps/Conds in the block of the Cond, not...
[libfirm] / ir / be / test / fehler098.c
1 char str[42];
2
3 int test(void)
4 {
5         return str != 0;
6 }
7
8 int main(void)
9 {
10         printf("%d (should be 1)\n", test());
11         return 0;
12 }