pr39339.c: Bitfield sizes changed to avoid padding.

* gcc.c-torture/execute/pr39339.c: Bitfield sizes changed to avoid padding.

From-SVN: r144752
This commit is contained in:
Hariharan Sandanagobalane 2009-03-10 16:25:28 +00:00 committed by Hariharan Sandanagobalane
parent ddef83d233
commit 23b27c8198
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2009-03-10 Hariharan Sandanagobalane <hariharan@picochip.com>
* gcc.c-torture/execute/pr39339.c: Bitfield sizes changed to avoid
padding.
2009-03-09 Jakub Jelinek <jakub@redhat.com>
PR c++/39371

View File

@ -4,8 +4,8 @@ struct C
struct D
{
unsigned int columns : 4;
unsigned int fore : 9;
unsigned int back : 9;
unsigned int fore : 12;
unsigned int back : 6;
unsigned int fragment : 1;
unsigned int standout : 1;
unsigned int underline : 1;