1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-22 10:42:39 +01:00
llvm-mirror/test/CodeGen/Generic/2007-02-25-invoke.ll
Dylan McKay dd0f6f1963 [AVR] Fix 14 Generic CodeGen tests by making address space explicit or optional
This fixes the vast majority of remaining failing AVR Generic CodeGen
tests.
2021-02-05 04:02:27 +13:00

17 lines
338 B
LLVM

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