f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
19 lines
709 B
C++
19 lines
709 B
C++
// RUN: %clang_cc1 -triple x86_64-apple-darwin10 -fapple-kext -fno-rtti -emit-llvm -o - %s | FileCheck %s
|
|
|
|
// CHECK-LABEL: define void @_ZN2B1D0Ev
|
|
// CHECK: [[T1:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
|
|
// CHECK-NEXT: call void [[T1]](%struct.B1* [[T2:%.*]])
|
|
// CHECK-LABEL: define void @_Z6DELETEP2B1
|
|
// CHECK: [[T3:%.*]] = load void (%struct.B1*)** getelementptr inbounds (void (%struct.B1*)** bitcast ([5 x i8*]* @_ZTV2B1 to void (%struct.B1*)**), i64 2)
|
|
// CHECK-NEXT: call void [[T3]](%struct.B1* [[T4:%.*]])
|
|
|
|
|
|
struct B1 {
|
|
virtual ~B1();
|
|
};
|
|
|
|
B1::~B1() {}
|
|
|
|
void DELETE(B1 *pb1) {
|
|
pb1->B1::~B1();
|
|
}
|