aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gcc/testsuite/ChangeLog4
-rw-r--r--gcc/testsuite/c-c++-common/pr65556.c4
2 files changed, 6 insertions, 2 deletions
diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog
index 38d3a04..792c267 100644
--- a/gcc/testsuite/ChangeLog
+++ b/gcc/testsuite/ChangeLog
@@ -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
diff --git a/gcc/testsuite/c-c++-common/pr65556.c b/gcc/testsuite/c-c++-common/pr65556.c
index c6729a1..8629a48 100644
--- a/gcc/testsuite/c-c++-common/pr65556.c
+++ b/gcc/testsuite/c-c++-common/pr65556.c
@@ -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