blob: 470c1a43c56be719468b218f2d509de9ba559cf3 [file] [log] [blame]
Eli Friedmanea9a2082009-11-14 04:19:37 +00001// clang-cc -o - -emit-llvm %s | FileCheck %s
2// PR5483
3
4// Make sure we generate all three forms of the destructor when it is virtual.
5class Foo {
6 virtual ~Foo();
7};
8Foo::~Foo() {}
9
10// CHECK: define void @_ZN3FooD0Ev