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