mirror of git://gcc.gnu.org/git/gcc.git
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:
parent
ddef83d233
commit
23b27c8198
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue