[ARM] Adjust how NEON shifts are lowered
[llvm-core.git] / test / ExecutionEngine / OrcMCJIT / eh.ll
blobe95bc53b690bc3efb470a2cec37f16be7667e9d0
1 ; REQUIRES: cxx-shared-library
2 ; RUN: %lli -jit-kind=orc-mcjit %s
3 ; XFAIL: arm, cygwin, windows-msvc, windows-gnu
4 declare i8* @__cxa_allocate_exception(i64)
5 declare void @__cxa_throw(i8*, i8*, i8*)
6 declare i32 @__gxx_personality_v0(...)
7 declare void @__cxa_end_catch()
8 declare i8* @__cxa_begin_catch(i8*)
10 @_ZTIi = external constant i8*
12 define void @throwException() {
13   %exception = tail call i8* @__cxa_allocate_exception(i64 4)
14   call void @__cxa_throw(i8* %exception, i8* bitcast (i8** @_ZTIi to i8*), i8* null)
15   unreachable
18 define i32 @main() personality i8* bitcast (i32 (...)* @__gxx_personality_v0 to i8*) {
19 entry:
20   invoke void @throwException()
21           to label %try.cont unwind label %lpad
23 lpad:
24   %p = landingpad { i8*, i32 }
25           catch i8* bitcast (i8** @_ZTIi to i8*)
26   %e = extractvalue { i8*, i32 } %p, 0
27   call i8* @__cxa_begin_catch(i8* %e)
28   call void @__cxa_end_catch()
29   br label %try.cont
31 try.cont:
32   ret i32 0