diff options
Diffstat (limited to 'clang/test/CodeGenCXX/dynamic-cast-always-null.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/dynamic-cast-always-null.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/test/CodeGenCXX/dynamic-cast-always-null.cpp b/clang/test/CodeGenCXX/dynamic-cast-always-null.cpp index 48ec69226c2..e4e86942181 100644 --- a/clang/test/CodeGenCXX/dynamic-cast-always-null.cpp +++ b/clang/test/CodeGenCXX/dynamic-cast-always-null.cpp @@ -1,7 +1,7 @@ // RUN: %clang_cc1 -I%S %s -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -std=c++0x -o - | FileCheck %s struct A { virtual ~A(); }; struct B final : A { }; -struct C { virtual ~C(); }; +struct C { virtual ~C(); int c; }; // CHECK: @_Z1fP1B C *f(B* b) { |