2010-05-15 05:14:41 +08:00
|
|
|
// RUN: %clang_cc1 %s -triple x86_64-apple-darwin10 -emit-llvm -fexceptions -o - | FileCheck %s
|
|
|
|
#include <typeinfo>
|
2009-12-18 22:55:04 +08:00
|
|
|
struct A { virtual void f(); };
|
|
|
|
struct B : A { };
|
|
|
|
|
2010-05-15 05:14:41 +08:00
|
|
|
// CHECK: {{define.*@_Z1fP1A}}
|
|
|
|
B fail;
|
2009-12-18 22:55:04 +08:00
|
|
|
const B& f(A *a) {
|
2010-05-15 05:14:41 +08:00
|
|
|
try {
|
|
|
|
// CHECK: call i8* @__dynamic_cast
|
|
|
|
// CHECK: br i1
|
|
|
|
// CHECK: invoke void @__cxa_bad_cast() noreturn
|
|
|
|
return dynamic_cast<const B&>(*a);
|
|
|
|
} catch (std::bad_cast&) {
|
|
|
|
// CHECK: call i8* @llvm.eh.exception
|
|
|
|
// CHECK: {{call.*llvm.eh.selector.*_ZTISt8bad_cast}}
|
|
|
|
// CHECK: {{call i32 @llvm.eh.typeid.for.*@_ZTISt8bad_cast}}
|
|
|
|
}
|
|
|
|
return fail;
|
2009-12-18 22:55:04 +08:00
|
|
|
}
|