blob: a4346bade7865294a6ed2ddeef41abf05ce4e190 [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -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