mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-02 22:04:55 +00:00
cc714e2142
The personality routine currently lives in the LandingPadInst. This isn't desirable because: - All LandingPadInsts in the same function must have the same personality routine. This means that each LandingPadInst beyond the first has an operand which produces no additional information. - There is ongoing work to introduce EH IR constructs other than LandingPadInst. Moving the personality routine off of any one particular Instruction and onto the parent function seems a lot better than have N different places a personality function can sneak onto an exceptional function. Differential Revision: http://reviews.llvm.org/D10429 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@239940 91177308-0d34-0410-b5e6-96231b3b80d8
35 lines
917 B
LLVM
35 lines
917 B
LLVM
; RUN: llvm-as < %s | llvm-dis > %t1.ll
|
|
; RUN: llvm-as %t1.ll -o - | llvm-dis > %t2.ll
|
|
; RUN: diff %t1.ll %t2.ll
|
|
|
|
%FunTy = type i32 (i32)
|
|
|
|
define void @invoke(%FunTy* %x) {
|
|
%foo = call i32 %x( i32 123 ) ; <i32> [#uses=0]
|
|
%foo2 = tail call i32 %x( i32 123 ) ; <i32> [#uses=0]
|
|
ret void
|
|
}
|
|
|
|
define i32 @main(i32 %argc) personality i32 (...)* @__gxx_personality_v0 {
|
|
%retval = call i32 @test( i32 %argc ) ; <i32> [#uses=2]
|
|
%two = add i32 %retval, %retval ; <i32> [#uses=1]
|
|
%retval2 = invoke i32 @test( i32 %argc )
|
|
to label %Next unwind label %Error ; <i32> [#uses=1]
|
|
|
|
Next:
|
|
%two2 = add i32 %two, %retval2 ; <i32> [#uses=1]
|
|
call void @invoke( %FunTy* @test )
|
|
ret i32 %two2
|
|
|
|
Error:
|
|
%exn = landingpad {i8*, i32}
|
|
cleanup
|
|
ret i32 -1
|
|
}
|
|
|
|
define i32 @test(i32 %i0) {
|
|
ret i32 %i0
|
|
}
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|