blob: db4346ffc6ba7c720330f315992a93bc6f506093 [file] [log] [blame]
Richard Smith762bb9d2011-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 Carlsson3ddcdd52011-04-11 01:45:29 +00002struct A { virtual ~A(); };
3struct B final : A { };
Anders Carlsson1741d7b2011-04-17 21:49:47 +00004struct C { virtual ~C(); int c; };
Anders Carlsson3ddcdd52011-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
Bill Wendling4e1125f2013-02-22 09:10:20 +000016 // CHECK: call void @__cxa_bad_cast() [[NR:#[0-9]+]]
Anders Carlsson3ddcdd52011-04-11 01:45:29 +000017 // CHECK: ret %struct.C* undef
18 return dynamic_cast<C&>(b);
19}
Sean Hunt5ca86392012-06-19 23:44:55 +000020
21void dont_crash() {
22 (void) dynamic_cast<void*>((A*)0);
23 (void) dynamic_cast<void*>((B*)0);
24}
Bill Wendling4e1125f2013-02-22 09:10:20 +000025
26// CHECK: attributes [[NR]] = { noreturn }