2002-05-02-InvalidForwardRef.ll 242 B

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