mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 10:42:39 +01:00
dd0f6f1963
This fixes the vast majority of remaining failing AVR Generic CodeGen tests.
17 lines
338 B
LLVM
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)
|