Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / abi / layout4.C
blobda3c2f5d8c77f3512a7e9b946205fdb4a64ee10a
1 // { dg-do run { target i?86-*-* x86_64-*-* } }
2 // { dg-require-effective-target ilp32 }
3 // { dg-options "-fabi-version=1" }
5 struct C4
7    int b:30;
8    C4(){};
9 };
11 struct C1:  virtual C4
13   int i;
16 int main() {
17   if (sizeof (C1) != 12)
18     return 1;