Fix PR4789. Teach eliminateFrameIndex how to handle VLDRQ and VSTRQ which cannot...
[llvm/avr.git] / test / CodeGen / PowerPC / multiple-return-values.ll
blob3f75f7d28ed66149dcbbe3aede09f160ff2b9a91
1 ; RUN: llvm-as < %s | llc -march=ppc32
2 ; RUN: llvm-as < %s | llc -march=ppc64
4 define {i64, float} @bar(i64 %a, float %b) {
5         %y = add i64 %a, 7
6         %z = fadd float %b, 7.0
7         ret i64 %y, float %z
10 define i64 @foo() {
11         %M = call {i64, float} @bar(i64 21, float 21.0)
12         %N = getresult {i64, float} %M, 0
13         %O = getresult {i64, float} %M, 1
14         %P = fptosi float %O to i64
15         %Q = add i64 %P, %N
16         ret i64 %Q