[Demangle] Add a few more options to the microsoft demangler
[llvm-complete.git] / test / CodeGen / Generic / multiple-return-values-cross-block-with-invoke.ll
blob8c11cb2f02177cb7e35d259a3fc80ceab68b77d1
1 ; RUN: llc < %s
2 declare { i64, double } @wild()
4 define void @foo(i64* %p, double* %q) nounwind personality i32 (...)* @__gxx_personality_v0 {
5         %t = invoke { i64, double } @wild() to label %normal unwind label %handler
7 normal:
8         %mrv_gr = extractvalue { i64, double } %t, 0
9         store i64 %mrv_gr, i64* %p
10         %mrv_gr12681 = extractvalue { i64, double } %t, 1   
11         store double %mrv_gr12681, double* %q
12         ret void
13   
14 handler:
15         %exn = landingpad {i8*, i32}
16                  catch i8* null
17         ret void
20 declare i32 @__gxx_personality_v0(...)