diff options
Diffstat (limited to 'test/CodeGenCXX/dynamic-cast-always-null.cpp')
-rw-r--r-- | test/CodeGenCXX/dynamic-cast-always-null.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/CodeGenCXX/dynamic-cast-always-null.cpp b/test/CodeGenCXX/dynamic-cast-always-null.cpp index 48ec69226c..e4e8694218 100644 --- a/test/CodeGenCXX/dynamic-cast-always-null.cpp +++ b/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) { |