bf-ms-layout.c: Adjust offsets to fit ms-bitfield structure layout.

* gcc.dg/bf-ms-layout.c: Adjust offsets to fit ms-bitfield
	structure layout.

From-SVN: r186880
This commit is contained in:
Janis Johnson 2012-04-26 15:16:16 +00:00 committed by Janis Johnson
parent e90247f8ba
commit 2b3ecd379c
2 changed files with 13 additions and 8 deletions

View File

@ -1,3 +1,8 @@
2012-04-26 Janis Johnson <janisjo@codesourcery.com>
* gcc.dg/bf-ms-layout.c: Adjust offsets to fit ms-bitfield
structure layout.
2012-04-25 Sriraman Tallam <tmsriram@google.com>
* testsuite/gcc.target/i386/builtin_target.c: Check avx2.

View File

@ -153,27 +153,27 @@ int main(){
struct ten test_ten;
#if defined (_TEST_MS_LAYOUT) || defined (_MSC_VER)
size_t exp_sizeof_one = 12;
size_t exp_sizeof_two = 16;
size_t exp_sizeof_one = 8;
size_t exp_sizeof_two = 12;
size_t exp_sizeof_three =6;
size_t exp_sizeof_four = 8;
size_t exp_sizeof_five = 3;
size_t exp_sizeof_six = 8;
size_t exp_sizeof_seven = 3;
size_t exp_sizeof_eight = 4;
size_t exp_sizeof_eight = 2;
size_t exp_sizeof_nine = 8;
size_t exp_sizeof_ten = 16;
size_t exp_sizeof_ten = 8;
unsigned char exp_one_c = 8;
unsigned char exp_two_c = 12;
unsigned char exp_one_c = 7;
unsigned char exp_two_c = 9;
unsigned char exp_three_c = 4;
unsigned char exp_four_c = 4;
char exp_five_c = 2;
char exp_six_c = 5;
char exp_seven_c = 2;
char exp_eight_c = 2;
char exp_eight_c = 1;
char exp_nine_c = 0;
char exp_ten_c = 8;
char exp_ten_c = 1;
#else /* testing -mno-ms-bitfields */