Merge branch 'master' into msp430
[llvm/msp430.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
blob00a0a015377676138c10b1d13656da855af5817d
1 ; RUN: llvm-as %s -o /dev/null -f
2 ; It looks like the assembler is not forward resolving the function declaraion
3 ; correctly.
5 define void @test() {
6         call void @foo( )
7         ret void
10 declare void @foo()