More makefile changes to allow dejagnu tests to pass when system tools default to...
[oota-llvm.git] / test / Assembler / 2005-01-31-CallingAggregateFunction.ll
1 ; RUN: llvm-as %s -o /dev/null -f 
2
3 define void @test() {
4         call {i32} @foo()
5         ret void
6 }
7
8 declare {i32 } @foo()