mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-07 11:33:44 +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
28 lines
792 B
LLVM
28 lines
792 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
|
|
|
|
@_ZTIc = external constant i8*
|
|
@_ZTId = external constant i8*
|
|
@_ZTIPKc = external constant i8*
|
|
|
|
define void @_Z3barv() uwtable optsize ssp personality i32 (...)* @__gxx_personality_v0 {
|
|
entry:
|
|
invoke void @_Z3quxv() optsize
|
|
to label %try.cont unwind label %lpad
|
|
|
|
try.cont: ; preds = %entry, %invoke.cont4
|
|
ret void
|
|
|
|
lpad: ; preds = %entry
|
|
%exn = landingpad {i8*, i32}
|
|
cleanup
|
|
catch i8** @_ZTIc
|
|
filter [2 x i8**] [i8** @_ZTIPKc, i8** @_ZTId]
|
|
resume { i8*, i32 } %exn
|
|
}
|
|
|
|
declare void @_Z3quxv() optsize
|
|
|
|
declare i32 @__gxx_personality_v0(...)
|