2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 | FileCheck %s
|
2009-11-25 11:15:49 +08:00
|
|
|
|
|
|
|
struct A {
|
|
|
|
A();
|
|
|
|
};
|
|
|
|
|
|
|
|
// CHECK: define void @_ZN1AC1Ev(%struct.A* %this)
|
|
|
|
// CHECK: define void @_ZN1AC2Ev(%struct.A* %this)
|
|
|
|
A::A() { }
|
|
|
|
|
|
|
|
struct B : virtual A {
|
|
|
|
B();
|
|
|
|
};
|
|
|
|
|
|
|
|
// CHECK: define void @_ZN1BC1Ev(%struct.B* %this)
|
|
|
|
// CHECK: define void @_ZN1BC2Ev(%struct.B* %this, i8** %vtt)
|
|
|
|
B::B() { }
|