2014-01-15 03:35:09 +08:00
|
|
|
// RUN: %clang_cc1 %s -triple %itanium_abi_triple -emit-llvm -o - | FileCheck %s
|
2009-12-02 07:18:25 +08:00
|
|
|
|
|
|
|
struct box {
|
|
|
|
virtual ~box();
|
|
|
|
};
|
|
|
|
|
|
|
|
struct pile_box : public box {
|
|
|
|
pile_box(box *);
|
|
|
|
};
|
|
|
|
|
|
|
|
pile_box::pile_box(box *pp)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// CHECK: call void @_ZdlPv
|
|
|
|
|