Adding some test cases used for building the PBQP code selection
[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 }