12 lines · plain
1; RUN: llvm-as %s -o /dev/null2; RUN: verify-uselistorder %s3; It looks like the assembler is not forward resolving the function declaraion4; correctly.5 6define void @test() {7 call void @foo( )8 ret void9}10 11declare void @foo()12