blob: 80d1b1e4ec75a731faefe917e2fa3941dd9f63a3 [file] [log] [blame]
Stephen Hines651f13c2014-04-23 16:59:28 -07001// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
Shih-wei Liaoea285162010-06-04 12:34:56 -07002
3struct box {
4 virtual ~box();
5};
6
7struct pile_box : public box {
8 pile_box(box *);
9};
10
11pile_box::pile_box(box *pp)
12{
13}
14
15// CHECK: call void @_ZdlPv
16