aboutsummaryrefslogtreecommitdiff
path: root/test/CodeGenCXX/dynamic-cast.cpp
diff options
context:
space:
mode:
authorDouglas Gregor <dgregor@apple.com>2010-05-14 21:50:50 +0000
committerDouglas Gregor <dgregor@apple.com>2010-05-14 21:50:50 +0000
commite37706dc65230201458364331ae0292ee8377143 (patch)
treec0366d71fccc6dcc68d5ed7e899a813b46e2709a /test/CodeGenCXX/dynamic-cast.cpp
parent4fb20533baff585c27531fe90c9bf7b004e07bb7 (diff)
Tweak test so that it does not require <typeinfo>
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@103819 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'test/CodeGenCXX/dynamic-cast.cpp')
-rw-r--r--test/CodeGenCXX/dynamic-cast.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/test/CodeGenCXX/dynamic-cast.cpp b/test/CodeGenCXX/dynamic-cast.cpp
index 2bf1aeed49..9838e25b1d 100644
--- a/test/CodeGenCXX/dynamic-cast.cpp
+++ b/test/CodeGenCXX/dynamic-cast.cpp
@@ -1,5 +1,4 @@
-// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -fexceptions -o - | FileCheck %s
-#include <typeinfo>
+// RUN: %clang_cc1 -I%S %s -triple x86_64-apple-darwin10 -emit-llvm -fexceptions -o - | FileCheck %s
struct A { virtual void f(); };
struct B : A { };
@@ -11,10 +10,8 @@ const B& f(A *a) {
// CHECK: br i1
// CHECK: invoke void @__cxa_bad_cast() noreturn
dynamic_cast<const B&>(*a);
- } catch (std::bad_cast&) {
+ } catch (...) {
// CHECK: call i8* @llvm.eh.exception
- // CHECK: {{call.*llvm.eh.selector.*_ZTISt8bad_cast}}
- // CHECK: {{call i32 @llvm.eh.typeid.for.*@_ZTISt8bad_cast}}
}
return fail;
}