Handle T_HRESULT types in CodeView records
[official-gcc.git] / gcc / testsuite / gcc.target / powerpc / darwin-abi-13-2.c
blob3bd52c0a8f800d7481922e8bca4faf42ae523b9f
1 /* { dg-do compile { target powerpc*-*-darwin* } } */
2 /* { dg-require-effective-target ilp32 } */
3 /* { dg-options "-Wno-long-long" } */
5 #pragma pack(push, 2)
7 #include "darwin-structs-0.h"
9 int tcd[sizeof(cd) != 10 ? -1 : 1];
10 int acd[__alignof__(cd) != 2 ? -1 : 1];
12 int sdc[sizeof(dc) != 10 ? -1 : 1];
13 int adc[__alignof__(dc) != 2 ? -1 : 1];
15 int scL[sizeof(cL) != 10 ? -1 : 1];
16 int acL[__alignof__(cL) != 2 ? -1 : 1];
18 int sLc[sizeof(Lc) != 10 ? -1 : 1];
19 int aLc[__alignof__(Lc) != 2 ? -1 : 1];
21 int scD[sizeof(cD) != 18 ? -1 : 1];
22 int acD[__alignof__(cD) != 2 ? -1 : 1];
24 int sDc[sizeof(Dc) != 18 ? -1 : 1];
25 int aDc[__alignof__(Dc) != 2 ? -1 : 1];
27 #pragma pack(pop)