You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
325 B
17 lines
325 B
4 months ago
|
; 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(...)
|