blob: 1e19f5f3d79ca7f51d3b9f70ac32df745ace0645 [file] [log] [blame]
Dan Gohman6183f782007-07-05 20:12:34 +00001; 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
6declare void @bar(i64 %x, i64 %y)
7
8define void @foo() {
9 call void @bar(i64 2, i64 3)
10 ret void
11}