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