1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-12 17:32:19 +00:00

13 lines
192 B
LLVM
Raw Normal View History

; 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
}