aboutsummaryrefslogtreecommitdiffstats
path: root/test/CodeGen/PowerPC/big-endian-formal-args.ll
blob: 1e19f5f3d79ca7f51d3b9f70ac32df745ace0645 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 6, 3}
; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 4, 2}
; RUN: llvm-as < %s | llc -march=ppc32 | grep {li 3, 0}
; RUN: llvm-as < %s | llc -march=ppc32 | grep {mr 5, 3}

declare void @bar(i64 %x, i64 %y)

define void @foo() {
  call void @bar(i64 2, i64 3)
  ret void
}