This is the mail archive of the
gcc-patches@gcc.gnu.org
mailing list for the GCC project.
[PATCH, testsuite, commited] pr39339 structure changed to avoid padding
- From: Hariharan Sandanagobalane <hariharans at picochip dot com>
- To: gcc-patches at gcc dot gnu dot org, Jakub Jelinek <jakub at redhat dot com>, Richard Guenther <rguenther at suse dot de>
- Date: Tue, 10 Mar 2009 16:28:42 +0000
- Subject: [PATCH, testsuite, commited] pr39339 structure changed to avoid padding
Committed.
Regards
Hari
ChangeLog:
* gcc.c-torture/execute/pr39339.c: Bitfield sizes changed to avoid padding.
Index: gcc/testsuite/gcc.c-torture/execute/pr39339.c
===================================================================
--- gcc/testsuite/gcc.c-torture/execute/pr39339.c (revision 144751)
+++ gcc/testsuite/gcc.c-torture/execute/pr39339.c (working copy)
@@ -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;