Add a parameter to getCopyToParts and getCopyFromParts to specify whether
[oota-llvm.git] / test / CodeGen / PowerPC / big-endian-formal-args.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 6, 3}
2 ; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 4, 2}
3 ; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 3, 0}
4 ; RUN: llvm-as < %s | llc -march=ppc32 | grep {mr 5, 3}
5
6 declare void @bar(i64 %x, i64 %y)
7
8 define void @foo() {
9   call void @bar(i64 2, i64 3)
10   ret void
11 }