* c-c++-common/pr65556.c: Change the width of bit-fields.
authorMarek Polacek <polacek@redhat.com>
Mon, 30 Mar 2015 14:20:14 +0000 (14:20 +0000)
committerMarek Polacek <mpolacek@gcc.gnu.org>
Mon, 30 Mar 2015 14:20:14 +0000 (14:20 +0000)
From-SVN: r221771

gcc/testsuite/ChangeLog
gcc/testsuite/c-c++-common/pr65556.c

index 38d3a046fcf30db445bc30ce4e897acde61a2b5b..792c2678fbc7c75ed1a6a9fa7408fb294249a826 100644 (file)
@@ -1,3 +1,7 @@
+2015-03-30  Marek Polacek  <polacek@redhat.com>
+
+       * c-c++-common/pr65556.c: Change the width of bit-fields.
+
 2015-03-27  Jan Hubicka  <hubicka@ucw.cz>
 
        PR ipa/65588
index c6729a1362989729196c076693c5adccbe056937..8629a48fdceedf63eff26085d96c05362dfd025c 100644 (file)
@@ -4,9 +4,9 @@
 struct S
 {
   long l: 1;
-  long l2: 41;
+  long l2: 21;
   unsigned long ul: 1;
-  unsigned long ul2: 41;
+  unsigned long ul2: 21;
 } s;
 
 void