Use symbolic names instead of magic values for the position parameter of get_irn_n().
[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 }