fehler127: WTF - autobreak expects this to compile.
[libfirm] / ir / be / test / bitfield.c
index 5703c68..8900028 100644 (file)
@@ -1,3 +1,5 @@
+#include <stdio.h>
+
 struct a {
        unsigned int i:1;
 };
@@ -8,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()
 {