1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-10-25 05:52:53 +02:00
llvm-mirror/test/CodeGen/Generic/2007-02-25-invoke.ll

13 lines
192 B
LLVM
Raw Normal View History

; RUN: llc < %s
2007-02-25 22:43:21 +01:00
; PR1224
declare i32 @test()
define i32 @test2() {
%A = invoke i32 @test() to label %invcont unwind label %blat
invcont:
ret i32 %A
blat:
ret i32 0
}