Fix the clang-wpa example.
[clang.git] / test / CodeGenCXX / virtual-bases.cpp
blobcfb4c837162e8db16cb8f51b305818b7d41cd7b3
1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 -mconstructor-aliases | FileCheck %s
3 struct A {
4 A();
5 };
7 // CHECK: @_ZN1AC1Ev = alias {{.*}} @_ZN1AC2Ev
8 // CHECK: define void @_ZN1AC2Ev(%struct.A* %this) unnamed_addr
9 A::A() { }
11 struct B : virtual A {
12 B();
15 // CHECK: define void @_ZN1BC1Ev(%struct.B* %this) unnamed_addr
16 // CHECK: define void @_ZN1BC2Ev(%struct.B* %this, i8** %vtt) unnamed_addr
17 B::B() { }
19 struct C : virtual A {
20 C(bool);
23 // CHECK: define void @_ZN1CC1Eb(%struct.B* %this, i1 zeroext) unnamed_addr
24 // CHECK: define void @_ZN1CC2Eb(%struct.B* %this, i8** %vtt, i1 zeroext) unnamed_addr
25 C::C(bool) { }
27 // PR6251
28 namespace PR6251 {
30 // Test that we don't call the A<char> constructor twice.
32 template<typename T>
33 struct A { A(); };
35 struct B : virtual A<char> { };
36 struct C : virtual A<char> { };
38 struct D : B, C {
39 D();
42 // CHECK: define void @_ZN6PR62511DC1Ev(%"struct.PR6251::D"* %this) unnamed_addr
43 // CHECK: call void @_ZN6PR62511AIcEC2Ev
44 // CHECK-NOT: call void @_ZN6PR62511AIcEC2Ev
45 // CHECK: ret void
46 D::D() { }