Use symbolic names instead of magic values for the position parameter of get_irn_n().
[libfirm] / ir / be / test / bitfield.c
index d92d0ca..8900028 100644 (file)
@@ -10,8 +10,8 @@ struct b {
   int z:10;
 };
 
-struct b B = { 1, 2, 3 };
-struct b C = { 1, 2, 3 };
+struct b B = { -1, 2, 3 };
+struct b C = { -1, 2, 3 };
 
 int main()
 {