blob: 94648b3c1d3b6582371dbe9d8bbde7d60ae7b79f [file] [log] [blame]
Petr Hosek66aea6e2018-01-08 02:48:41 +00001; REQUIRES: cxx-shared-library
Lang Hames9528bba2015-03-25 12:11:48 +00002; RUN: %lli -jit-kind=orc-mcjit -extra-module=%p/Inputs/multi-module-eh-b.ll %s
Peter Collingbourne87debbb2015-12-15 23:46:21 +00003; XFAIL: arm, cygwin, win32, mingw
Lang Hames16bbaf12015-02-02 05:04:55 +00004declare i8* @__cxa_allocate_exception(i64)
5declare void @__cxa_throw(i8*, i8*, i8*)
6declare i32 @__gxx_personality_v0(...)
7declare void @__cxa_end_catch()
8declare i8* @__cxa_begin_catch(i8*)
9
10@_ZTIi = external constant i8*
11
12declare i32 @FB()
13
14define void @throwException() {
15 %exception = tail call i8* @__cxa_allocate_exception(i64 4)
16 call void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null)
17 unreachable
18}
19
David Majnemer7fddecc2015-06-17 20:52:32 +000020define i32 @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
Lang Hames16bbaf12015-02-02 05:04:55 +000021entry:
22 invoke void @throwException()
23 to label %try.cont unwind label %lpad
24
25lpad:
David Majnemer7fddecc2015-06-17 20:52:32 +000026 %p = landingpad { i8*, i32 }
Lang Hames16bbaf12015-02-02 05:04:55 +000027 catch i8* bitcast (i8** @_ZTIi to i8*)
28 %e = extractvalue { i8*, i32 } %p, 0
29 call i8* @__cxa_begin_catch(i8* %e)
30 call void @__cxa_end_catch()
31 br label %try.cont
32
33try.cont:
34 %r = call i32 @FB( )
35 ret i32 %r
36}