llvm-6502/test/CodeGen/Generic/2007-02-25-invoke.ll
2009-09-09 00:09:15 +00:00

13 lines
192 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:
ret i32 0
}