1 // RUN: %clang_cc1 -triple x86_64-darwin -std=c++11 -fobjc-arc -emit-llvm -o - %s | FileCheck %s --implicit-check-not "call\ "
8 // Use variadic args to cause inlining the inherited constructor.
12 struct NonTrivialDtor {
15 struct Inheritor : public NonTrivialDtor, public Base {
23 // CHECK-LABEL: define{{.*}} void @_Z1fv
24 // CHECK: %[[TMP:.*]] = call noundef ptr @_Z1gv()
25 // CHECK: {{.*}} = notail call ptr @llvm.objc.retainAutoreleasedReturnValue(ptr %[[TMP]])
26 // CHECK: call void (ptr, ptr, ...) @_ZN4BaseC2E6Strongz(ptr {{.*}}, ptr {{.*}})
27 // CHECK-NEXT: call void @_ZN9InheritorD1Ev(ptr {{.*}})
29 // CHECK-LABEL: define linkonce_odr void @_ZN4BaseC2E6Strongz(ptr {{.*}}, ptr {{.*}}, ...)
30 // CHECK: call void @_ZN6StrongD1Ev(ptr {{.*}})
32 // CHECK-LABEL: define linkonce_odr void @_ZN9InheritorD1Ev(ptr {{.*}})
33 // CHECK: call void @_ZN9InheritorD2Ev(ptr {{.*}})
35 // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD1Ev(ptr {{.*}})
36 // CHECK: call void @_ZN6StrongD2Ev(ptr {{.*}})
38 // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD2Ev(ptr {{.*}})
39 // CHECK: call void @llvm.objc.storeStrong(ptr {{.*}}, ptr null)
41 // CHECK-LABEL: define linkonce_odr void @_ZN9InheritorD2Ev(ptr {{.*}})
42 // CHECK: call void @_ZN14NonTrivialDtorD2Ev(ptr {{.*}})