* c-c++-common/pr65556.c: Change the width of bit-fields.

From-SVN: r221771
This commit is contained in:
Marek Polacek 2015-03-30 14:20:14 +00:00 committed by Marek Polacek
parent afd1e7c68a
commit 233b9db6fb
2 changed files with 6 additions and 2 deletions

View 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

View 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