blob: 2c3ea13d195787cc41b2a046abbc6e4e475eb47b [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -I%S %s -triple x86_64-apple-darwin10 -emit-llvm -fcxx-exceptions -fexceptions -std=c++11 -o - | FileCheck %s
Anders Carlssonc1c99712011-04-11 01:45:29 +00002struct A { virtual ~A(); };
3struct B final : A { };
Anders Carlsson2caf2072011-04-17 21:49:47 +00004struct C { virtual ~C(); int c; };
Anders Carlssonc1c99712011-04-11 01:45:29 +00005
6// CHECK: @_Z1fP1B
7C *f(B* b) {
8 // CHECK-NOT: call i8* @__dynamic_cast
9 // CHECK: ret %struct.C* null
10 return dynamic_cast<C*>(b);
11}
12
13// CHECK: @_Z1fR1B
14C &f(B& b) {
15 // CHECK-NOT: call i8* @__dynamic_cast
16 // CHECK: call void @__cxa_bad_cast() noreturn
17 // CHECK: ret %struct.C* undef
18 return dynamic_cast<C&>(b);
19}