eccp optimized the assert away!?!, anyway I wanna fix the real error first...
[libfirm] / ir / be / test / bitwise.c
1
2         int a, b, c, d, e;
3
4 int main(void) {
5         c = a & b;
6         d = c | a;
7         e = b ^ d;
8         return 0;
9 }