[RISCV] Add shrinkwrap test cases showing gaps in current impl
[llvm-project.git] / clang / test / CodeGenCXX / virtual-destructor-synthesis.cpp
blob59272358d14547108ca68733283e90a3c3a25c24
1 // RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
3 struct box {
4 virtual ~box();
5 };
7 struct pile_box : public box {
8 pile_box(box *);
9 };
11 pile_box::pile_box(box *pp)
15 // CHECK: call {{.*}}void @_ZdlPv