Add an explicit triple to the big-endian tests so that the assembly
[oota-llvm.git] / test / CodeGen / PowerPC / big-endian-formal-args.ll
1 ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
2 ; RUN:   grep {li 6, 3}
3 ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
4 ; RUN:   grep {li 4, 2}
5 ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
6 ; RUN:   grep {li 3, 0}
7 ; RUN: llvm-as < %s | llc -march=ppc32 -mtriple=powerpc-unknown-linux-gnu | \
8 ; RUN:   grep {mr 5, 3}
9
10 declare void @bar(i64 %x, i64 %y)
11
12 define void @foo() {
13   call void @bar(i64 2, i64 3)
14   ret void
15 }