Use symbolic names instead of magic values for the position parameter of get_irn_n().
[libfirm] / ir / be / test / fehler126.c
1 int x;
2
3 int
4 main ()
5 {
6         if (x) {
7                 struct s { int j; };
8                 struct s *b; b->j = 5;
9         }
10
11         return 0;
12 }