1; REQUIRES: cxx-shared-library 2; RUN: %lli -jit-kind=mcjit -remote-mcjit -mcjit-remote-process=lli-child-target%exeext %s 3; XFAIL: arm, cygwin, windows-msvc, windows-gnu 4; UNSUPPORTED: powerpc64-unknown-linux-gnu 5; Remove UNSUPPORTED for powerpc64-unknown-linux-gnu if problem caused by r266663 is fixed 6; FIXME: Something hangs here. 7; UNSUPPORTED: use_msan_with_origins 8declare i8* @__cxa_allocate_exception(i64) 9declare void @__cxa_throw(i8*, i8*, i8*) 10declare i32 @__gxx_personality_v0(...) 11declare void @__cxa_end_catch() 12declare i8* @__cxa_begin_catch(i8*) 13 14@_ZTIi = external constant i8* 15 16define void @throwException() { 17 %exception = tail call i8* @__cxa_allocate_exception(i64 4) 18 call void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null) 19 unreachable 20} 21 22define i32 @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) { 23entry: 24 invoke void @throwException() 25 to label %try.cont unwind label %lpad 26 27lpad: 28 %p = landingpad { i8*, i32 } 29 catch i8* bitcast (i8** @_ZTIi to i8*) 30 %e = extractvalue { i8*, i32 } %p, 0 31 call i8* @__cxa_begin_catch(i8* %e) 32 call void @__cxa_end_catch() 33 br label %try.cont 34 35try.cont: 36 ret i32 0 37} 38