llvm-6502/test/CodeGen/Generic/2009-06-03-UnreachableSplitPad.ll
Bill Wendling 1a9a2d0d6b Update to the new EH scheme.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@138606 91177308-0d34-0410-b5e6-96231b3b80d8
2011-08-25 23:48:37 +00:00

20 lines
304 B
LLVM

; RUN: llc < %s
; PR4317
declare i32 @b()
define void @a() {
entry:
ret void
dummy:
invoke i32 @b() to label %reg unwind label %reg
reg:
%lpad = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
catch i8* null
ret void
}
declare i32 @__gxx_personality_v0(...)