summaryrefslogtreecommitdiffstats
path: root/clang/test/CodeGenCXX/virt-dtor-key.cpp
blob: aa119ec057bc42d3fedcc8dca84162829355898b (plain)
1
2
3
4
5
6
7
8
9
// RUN: %clang_cc1 -cxx-abi itanium -emit-llvm %s -o - | FileCheck %s
// CHECK: @_ZTI3foo = unnamed_addr constant
class foo {
   foo();
   virtual ~foo();
};

foo::~foo() {
}
OpenPOWER on IntegriCloud