freebsd-dev/test/CodeGenCXX/dynamic-cast.cpp

18 lines
460 B
C++
Raw Normal View History

// RUN: %clang_cc1 -I%S %s -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -o - | FileCheck %s
2010-01-01 10:34:51 +00:00
struct A { virtual void f(); };
struct B : A { };
2010-05-27 15:17:06 +00:00
// CHECK: {{define.*@_Z1fP1A}}
B fail;
2010-01-01 10:34:51 +00:00
const B& f(A *a) {
2010-05-27 15:17:06 +00:00
try {
// CHECK: call i8* @__dynamic_cast
// CHECK: br i1
// CHECK: invoke void @__cxa_bad_cast() noreturn
dynamic_cast<const B&>(*a);
} catch (...) {
// CHECK: call i8* @llvm.eh.exception
}
return fail;
2010-01-01 10:34:51 +00:00
}