Mercurial > hg > CbC > CbC_llvm
view clang/test/CodeGenObjCXX/inheriting-constructor-cleanup.mm @ 266:00f31e85ec16 default tip
Added tag current for changeset 31d058e83c98
author | Shinji KONO <kono@ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 14 Oct 2023 10:13:55 +0900 |
parents | 1f2b6ac9f198 |
children |
line wrap: on
line source
// RUN: %clang_cc1 -triple x86_64-darwin -std=c++11 -fobjc-arc -emit-llvm -o - %s | FileCheck %s --implicit-check-not "call\ " // rdar://problem/45805151 struct Strong { __strong id x; }; struct Base { // Use variadic args to cause inlining the inherited constructor. Base(Strong s, ...) {} }; struct NonTrivialDtor { ~NonTrivialDtor() {} }; struct Inheritor : public NonTrivialDtor, public Base { using Base::Base; }; id g(void); void f() { Inheritor({g()}); } // CHECK-LABEL: define{{.*}} void @_Z1fv // CHECK: %[[TMP:.*]] = call noundef ptr @_Z1gv() // CHECK: {{.*}} = notail call ptr @llvm.objc.retainAutoreleasedReturnValue(ptr %[[TMP]]) // CHECK: call void (ptr, ptr, ...) @_ZN4BaseC2E6Strongz(ptr {{.*}}, ptr {{.*}}) // CHECK-NEXT: call void @_ZN9InheritorD1Ev(ptr {{.*}}) // CHECK-LABEL: define linkonce_odr void @_ZN4BaseC2E6Strongz(ptr {{.*}}, ptr {{.*}}, ...) // CHECK: call void @_ZN6StrongD1Ev(ptr {{.*}}) // CHECK-LABEL: define linkonce_odr void @_ZN9InheritorD1Ev(ptr {{.*}}) // CHECK: call void @_ZN9InheritorD2Ev(ptr {{.*}}) // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD1Ev(ptr {{.*}}) // CHECK: call void @_ZN6StrongD2Ev(ptr {{.*}}) // CHECK-LABEL: define linkonce_odr void @_ZN6StrongD2Ev(ptr {{.*}}) // CHECK: call void @llvm.objc.storeStrong(ptr {{.*}}, ptr null) // CHECK-LABEL: define linkonce_odr void @_ZN9InheritorD2Ev(ptr {{.*}}) // CHECK: call void @_ZN14NonTrivialDtorD2Ev(ptr {{.*}})