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

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