aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/abi/empty10.C
blob: ae992944dee842a2a6914aa547a042148bacc868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// { dg-do run { target i?86-*-* x86_64-*-* } }
// { dg-require-effective-target ilp32 }
// { dg-options "-fabi-version=0 -w" }

struct E {};
struct E2 : public E {};

struct A {
  int i;
};

struct B {
  int j;
};

struct C :
  public E, 
  public A, 
  public E2, 
  virtual public B {
};

C c;

int main () {
  if (((char*)(B*)&c - (char*)&c) != 8)
    return 1;
}