Use symbolic names instead of magic values for the position parameter of get_irn_n().
[libfirm] / ir / be / test / addn.c
1 int x = 1;
2
3 int main() {
4         int a = x + x + x + x;
5
6         printf("A = %d\n", a);
7         return 0;
8 }