Commit 23b27c81 by Hariharan Sandanagobalane Committed by Hariharan Sandanagobalane

pr39339.c: Bitfield sizes changed to avoid padding.

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

From-SVN: r144752
parent ddef83d2
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> 2009-03-09 Jakub Jelinek <jakub@redhat.com>
PR c++/39371 PR c++/39371
......
...@@ -4,8 +4,8 @@ struct C ...@@ -4,8 +4,8 @@ struct C
struct D struct D
{ {
unsigned int columns : 4; unsigned int columns : 4;
unsigned int fore : 9; unsigned int fore : 12;
unsigned int back : 9; unsigned int back : 6;
unsigned int fragment : 1; unsigned int fragment : 1;
unsigned int standout : 1; unsigned int standout : 1;
unsigned int underline : 1; unsigned int underline : 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment