1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 14:02:52 +02:00
llvm-mirror/test/CodeGen/Generic/2009-06-03-UnreachableSplitPad.ll
Bill Wendling 077e9ea84b Update to the new EH scheme.
llvm-svn: 138606
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(...)