1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-19 19:12:56 +02:00
llvm-mirror/test/CodeGen/Generic/2007-02-25-invoke.ll
Bill Wendling 077e9ea84b Update to the new EH scheme.
llvm-svn: 138606
2011-08-25 23:48:37 +00:00

17 lines
325 B
LLVM

; RUN: llc < %s
; PR1224
declare i32 @test()
define i32 @test2() {
%A = invoke i32 @test() to label %invcont unwind label %blat
invcont:
ret i32 %A
blat:
%lpad = landingpad { i8*, i32 } personality i32 (...)* @__gxx_personality_v0
cleanup
ret i32 0
}
declare i32 @__gxx_personality_v0(...)