2010-03-03 12:28:16 -05:00
|
|
|
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 -mconstructor-aliases | FileCheck %s
|
2009-12-01 06:08:04 -05:00
|
|
|
|
|
|
|
|
struct A {
|
|
|
|
|
A();
|
|
|
|
|
};
|
|
|
|
|
|
2010-03-03 12:28:16 -05:00
|
|
|
// CHECK: @_ZN1AC1Ev = alias {{.*}} @_ZN1AC2Ev
|
2011-02-20 08:06:31 -05:00
|
|
|
// CHECK: define void @_ZN1AC2Ev(%struct.A* %this) unnamed_addr
|
2009-12-01 06:08:04 -05:00
|
|
|
A::A() { }
|
|
|
|
|
|
|
|
|
|
struct B : virtual A {
|
|
|
|
|
B();
|
|
|
|
|
};
|
|
|
|
|
|
2011-02-20 08:06:31 -05:00
|
|
|
// CHECK: define void @_ZN1BC1Ev(%struct.B* %this) unnamed_addr
|
|
|
|
|
// CHECK: define void @_ZN1BC2Ev(%struct.B* %this, i8** %vtt) unnamed_addr
|
2009-12-01 06:08:04 -05:00
|
|
|
B::B() { }
|
2010-02-16 04:31:36 -05:00
|
|
|
|
|
|
|
|
struct C : virtual A {
|
|
|
|
|
C(bool);
|
|
|
|
|
};
|
|
|
|
|
|
2011-07-17 11:40:56 -04:00
|
|
|
// CHECK: define void @_ZN1CC1Eb(%struct.C* %this, i1 zeroext) unnamed_addr
|
|
|
|
|
// CHECK: define void @_ZN1CC2Eb(%struct.C* %this, i8** %vtt, i1 zeroext) unnamed_addr
|
2010-02-16 04:31:36 -05:00
|
|
|
C::C(bool) { }
|
2010-04-02 04:55:10 -04:00
|
|
|
|
|
|
|
|
// PR6251
|
|
|
|
|
namespace PR6251 {
|
|
|
|
|
|
|
|
|
|
// Test that we don't call the A<char> constructor twice.
|
|
|
|
|
|
|
|
|
|
template<typename T>
|
|
|
|
|
struct A { A(); };
|
|
|
|
|
|
|
|
|
|
struct B : virtual A<char> { };
|
|
|
|
|
struct C : virtual A<char> { };
|
|
|
|
|
|
|
|
|
|
struct D : B, C {
|
|
|
|
|
D();
|
|
|
|
|
};
|
|
|
|
|
|
2011-02-20 08:06:31 -05:00
|
|
|
// CHECK: define void @_ZN6PR62511DC1Ev(%"struct.PR6251::D"* %this) unnamed_addr
|
2010-04-02 04:55:10 -04:00
|
|
|
// CHECK: call void @_ZN6PR62511AIcEC2Ev
|
|
|
|
|
// CHECK-NOT: call void @_ZN6PR62511AIcEC2Ev
|
|
|
|
|
// CHECK: ret void
|
|
|
|
|
D::D() { }
|
|
|
|
|
|
|
|
|
|
}
|