llvm/test/CodeGen/Generic/multiple-return-values-cross-block-with-invoke.ll
Krzysztof Parzyszek d8dec6c86f [Hexagon] Unxfail passing tests
r300198 fixed a problem that caused two tests to be xfailed. Unxfail
these tests now, since they are passing.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@300203 91177308-0d34-0410-b5e6-96231b3b80d8
2017-04-13 16:05:35 +00:00

21 lines
573 B
LLVM

; RUN: llc < %s
declare { i64, double } @wild()
define void @foo(i64* %p, double* %q) nounwind personality i32 (...)* @__gxx_personality_v0 {
%t = invoke { i64, double } @wild() to label %normal unwind label %handler
normal:
%mrv_gr = extractvalue { i64, double } %t, 0
store i64 %mrv_gr, i64* %p
%mrv_gr12681 = extractvalue { i64, double } %t, 1
store double %mrv_gr12681, double* %q
ret void
handler:
%exn = landingpad {i8*, i32}
catch i8* null
ret void
}
declare i32 @__gxx_personality_v0(...)