brintos

brintos / llvm-project-archived public Read only

0
0
Text · 242 B · 38c42b3 Raw
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