From: Marek Polacek Date: Mon, 30 Mar 2015 14:20:14 +0000 (+0000) Subject: * c-c++-common/pr65556.c: Change the width of bit-fields. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=233b9db6fb3aef2ec39fd66c54ac064a7737732c;p=gcc.git * c-c++-common/pr65556.c: Change the width of bit-fields. From-SVN: r221771 --- diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index 38d3a046fcf..792c2678fbc 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2015-03-30 Marek Polacek + + * c-c++-common/pr65556.c: Change the width of bit-fields. + 2015-03-27 Jan Hubicka PR ipa/65588 diff --git a/gcc/testsuite/c-c++-common/pr65556.c b/gcc/testsuite/c-c++-common/pr65556.c index c6729a13629..8629a48fdce 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