Add an explicit triple to the big-endian tests so that the assembly
[oota-llvm.git] / test / Assembler / 2005-01-31-CallingAggregateFunction.ll
1 ; RUN: ignore llvm-as < %s -o /dev/null -f |& \
2 ; RUN:    grep {LLVM functions cannot return aggregate types}
3
4 define void @test() {
5         call {} @foo()
6         ret void
7 }
8
9 declare {} @foo()