1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-Wno-long-long" } */
4
5 #pragma pack(push, 2)
6
7 #include "darwin-structs-0.h"
8
9 int tcd[sizeof(cd) != 10 ? -1 : 1];
10 int acd[__alignof__(cd) != 2 ? -1 : 1];
11
12 int sdc[sizeof(dc) != 10 ? -1 : 1];
13 int adc[__alignof__(dc) != 2 ? -1 : 1];
14
15 int scL[sizeof(cL) != 10 ? -1 : 1];
16 int acL[__alignof__(cL) != 2 ? -1 : 1];
17
18 int sLc[sizeof(Lc) != 10 ? -1 : 1];
19 int aLc[__alignof__(Lc) != 2 ? -1 : 1];
20
21 int scD[sizeof(cD) != 18 ? -1 : 1];
22 int acD[__alignof__(cD) != 2 ? -1 : 1];
23
24 int sDc[sizeof(Dc) != 18 ? -1 : 1];
25 int aDc[__alignof__(Dc) != 2 ? -1 : 1];
26
27 #pragma pack(pop)