blob: cb418f856fbee12d6c3f292e2fb97ddd63cd51e8 [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
Rafael Espindolac5f657f2011-01-11 00:26:26 +000010// CHECK: define unnamed_addr void @_ZN3FooD0Ev