* support/regression/tests/bug-1981238.c:
[fw/sdcc] / support / regression / tests / bug-1981238.c
index 1934f5e81c0f3c5815686641e74898eb02559c2c..a8f2a6ca95191154afc2cc10ade7d67a90d9c25f 100644 (file)
@@ -16,12 +16,12 @@ code struct {
   char :0;
   int s:1;
   int t:7;
-} noPad = {1, 120, 1, 1, 127};
+} noPad = {1, 120, 1, 127};
 
 code struct {
   char  :0;
   char b;
-} initialNoPad[] = {{1, 2}, {3,4}};
+} initialNoPad[] = {{2}, {4}};
 
 void testBitfield (void)
 {