1) emit base destructors as aliases to their unique base class destructors under some careful conditions. This is enabled for the same targets that can support complete-to-base aliases, i.e. not darwin. 2) Emit non-variadic complete constructors for classes with no virtual bases as calls to the base constructor. This is enabled on all targets and in theory can trigger in situations that the alias optimization can't (mostly involving virtual bases, mostly not yet supported). These are bundled together because I didn't think it worthwhile to split them, not because they really need to be. llvm-svn: 96842
58 lines
1.2 KiB
C++
58 lines
1.2 KiB
C++
// RUN: %clang_cc1 %s -triple=x86_64-apple-darwin10 -emit-llvm -o - | FileCheck %s
|
|
|
|
struct Field {
|
|
Field();
|
|
~Field();
|
|
};
|
|
|
|
struct Base {
|
|
Base();
|
|
~Base();
|
|
};
|
|
|
|
struct A : Base {
|
|
A();
|
|
~A();
|
|
|
|
virtual void f();
|
|
|
|
Field field;
|
|
};
|
|
|
|
// CHECK: define void @_ZN1AC2Ev(
|
|
// CHECK: call void @_ZN4BaseC2Ev(
|
|
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1A, i64 0, i64 2)
|
|
// CHECK: call void @_ZN5FieldC1Ev(
|
|
// CHECK: ret void
|
|
A::A() { }
|
|
|
|
// CHECK: define void @_ZN1AD2Ev(
|
|
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1A, i64 0, i64 2)
|
|
// CHECK: call void @_ZN5FieldD1Ev(
|
|
// CHECK: call void @_ZN4BaseD2Ev(
|
|
// CHECK: ret void
|
|
A::~A() { }
|
|
|
|
struct B : Base {
|
|
virtual void f();
|
|
|
|
Field field;
|
|
};
|
|
|
|
void f() { B b; }
|
|
|
|
// CHECK: define linkonce_odr void @_ZN1BC1Ev(
|
|
// CHECK: call void @_ZN1BC2Ev(
|
|
|
|
// CHECK: define linkonce_odr void @_ZN1BD1Ev(
|
|
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1B, i64 0, i64 2)
|
|
// CHECK: call void @_ZN5FieldD1Ev(
|
|
// CHECK: call void @_ZN4BaseD2Ev(
|
|
// CHECK: ret void
|
|
|
|
// CHECK: define linkonce_odr void @_ZN1BC2Ev(
|
|
// CHECK: call void @_ZN4BaseC2Ev(
|
|
// CHECK: store i8** getelementptr inbounds ([3 x i8*]* @_ZTV1B, i64 0, i64 2)
|
|
// CHECK: call void @_ZN5FieldC1Ev
|
|
// CHECK: ret void
|