[clang][modules] Don't prevent translation of FW_Private includes when explicitly...
[llvm-project.git] / llvm / test / ExecutionEngine / MCJIT / Inputs / multi-module-eh-b.ll
blob625ae43ef637056352871dbf23aa4f6ab1317a5e
1 declare ptr @__cxa_allocate_exception(i64)
2 declare void @__cxa_throw(ptr, ptr, ptr)
3 declare i32 @__gxx_personality_v0(...)
4 declare void @__cxa_end_catch()
5 declare ptr @__cxa_begin_catch(ptr)
7 @_ZTIi = external constant ptr
9 define void @throwException_B() {
10   %exception = tail call ptr @__cxa_allocate_exception(i64 4)
11   call void @__cxa_throw(ptr %exception, ptr @_ZTIi, ptr null)
12   unreachable
15 define i32 @FB() personality ptr @__gxx_personality_v0 {
16 entry:
17   invoke void @throwException_B()
18           to label %try.cont unwind label %lpad
20 lpad:
21   %p = landingpad { ptr, i32 }
22           catch ptr @_ZTIi
23   %e = extractvalue { ptr, i32 } %p, 0
24   call ptr @__cxa_begin_catch(ptr %e)
25   call void @__cxa_end_catch()
26   br label %try.cont
28 try.cont:
29   ret i32 0