blob: 704d735c776efca20837cfffe8040adec4e2bf51 [file] [log] [blame]
Eli Friedman2f005522009-11-14 04:23:25 +00001// RUN: clang-cc -o - -emit-llvm %s | FileCheck %s
Eli Friedmanea9a2082009-11-14 04:19:37 +00002// 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