Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git] / old-autovect-branch / gcc / testsuite / g++.dg / abi / empty7.C
blob0a665a845317031d012d011ee02174350869a58a
1 // { dg-do run { target i?86-*-* x86_64-*-* } }
2 // { dg-require-effective-target ilp32 }
3 // { dg-options "-fabi-version=0" }
5 struct S1 {};
6 struct S2 { virtual void f () {} S1 s1[4]; };
7 struct S3 : virtual public S2 {};
8 struct S4 : virtual public S2 { int i; };
9 struct S5 : public S3, virtual public S4 {};
10 struct S6 { S5 s5; };
11 struct S7 { S1 s1[5]; };
12 struct S8 : public S1, public S6, virtual public S7 { };
14 S8 s8;
16 int main () {
17   if ((char *)(S7 *)&s8 - (char *)&s8 != 24)
18     return 1;