Merge from mainline (160224:163495).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / abi / covariant6.C
blob9dfc5ba74ab9f6a786a0e2ff98ed111ab913f877
1 struct A
3   virtual A* f();
4 };
6 struct B: virtual A
8   virtual A* f();
9 };
11 struct C: B
13   virtual C* f();
16 C* C::f() { return 0; }
18 // When we emit C::f, we should emit both thunks: one for B and one for A.
19 // { dg-final { scan-assembler "_ZTch0_v0_n16_N1C1fEv" { target ilp32 } } }
20 // { dg-final { scan-assembler "_ZTch0_v0_n32_N1C1fEv" { target lp64 } } }
21 // { dg-final { scan-assembler "_ZTcv0_n12_v0_n16_N1C1fEv" { target ilp32 } } }
22 // { dg-final { scan-assembler "_ZTcv0_n24_v0_n32_N1C1fEv" { target lp64 } } }
24 struct D: B
26   virtual void dummy ();
27   virtual D* f();
30 void D::dummy() { }
32 // When we emit the D vtable, it should refer to the thunk for B.
33 // { dg-final { scan-assembler "_ZTch0_v0_n16_N1D1fEv" { target ilp32 } } }
34 // { dg-final { scan-assembler "_ZTch0_v0_n32_N1D1fEv" { target lp64 } } }