1; RUN: llvm-as %s -o /dev/null 2; It looks like the assembler is not forward resolving the function declaraion 3; correctly. 4 5define void @test() { 6 call void @foo( ) 7 ret void 8} 9 10declare void @foo() 11