Small ChangeLog tweak.
[official-gcc.git] / gcc / testsuite / gcc.dg / sso / init8.h
bloba273a78e71866b42ff844f0bbc27b1386d293958
1 struct __attribute__((scalar_storage_order("big-endian"))) Nested1
3 int C1;
4 int C2;
5 int C3;
6 };
8 struct __attribute__((scalar_storage_order("little-endian"))) R1
10 int I;
11 struct Nested1 N;
14 struct __attribute__((scalar_storage_order("little-endian"))) Nested2
16 int C1;
17 int C2;
18 int C3;
21 struct __attribute__((scalar_storage_order("big-endian"))) R2
23 int I;
24 struct Nested2 N;
27 struct R1 My_R1 = { 0x12345678, { 0xAB0012, 0xCD0034, 0xEF0056 } };
28 struct R2 My_R2 = { 0x12345678, { 0xAB0012, 0xCD0034, 0xEF0056 } };