mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
16499170c2
llvm-svn: 144048
23 lines
441 B
LLVM
23 lines
441 B
LLVM
; RUN: llc < %s -march=arm | FileCheck %s
|
|
target triple = "armv6-apple-macosx10.6"
|
|
|
|
declare void @func()
|
|
|
|
declare i32 @__gxx_personality_sj0(...)
|
|
|
|
define void @test0() {
|
|
entry:
|
|
invoke void @func()
|
|
to label %cont unwind label %lpad
|
|
|
|
cont:
|
|
ret void
|
|
|
|
lpad:
|
|
%exn = landingpad { i8*, i32 } personality i8* bitcast (i32 (...)* @__gxx_personality_sj0 to i8*)
|
|
cleanup
|
|
resume { i8*, i32 } %exn
|
|
}
|
|
|
|
; CHECK: __Unwind_SjLj_Resume
|