diff options
author | Anders Carlsson <andersca@mac.com> | 2010-02-12 18:14:46 +0000 |
---|---|---|
committer | Anders Carlsson <andersca@mac.com> | 2010-02-12 18:14:46 +0000 |
commit | c1eec891eb008cf3bc89d69d90af82678513f79b (patch) | |
tree | 0f372ce4bc1540134cc5e808bc03075cd3aab9c0 /test/CodeGenCXX/virtual-function-calls.cpp | |
parent | 52b2e1e0775a7a50616b02be4af92295c61e37f5 (diff) |
Fix a refacto that broke the clang-on-clang build.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@95994 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/virtual-function-calls.cpp')
-rw-r--r-- | test/CodeGenCXX/virtual-function-calls.cpp | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/test/CodeGenCXX/virtual-function-calls.cpp b/test/CodeGenCXX/virtual-function-calls.cpp index 0b3a684301..46e7b2d37f 100644 --- a/test/CodeGenCXX/virtual-function-calls.cpp +++ b/test/CodeGenCXX/virtual-function-calls.cpp @@ -1,6 +1,8 @@ // RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s // PR5021 +namespace PR5021 { + struct A { virtual void f(char); }; @@ -16,4 +18,21 @@ struct B : virtual A { void f(B * b) { b->f(); -}
\ No newline at end of file +} + +} + +namespace Test1 { + struct A { + virtual ~A(); + }; + + struct B : A { + virtual ~B(); + virtual void f(); + }; + + void f(B *b) { + b->f(); + } +} |