[test] Remove a needless declaration of REQUIRES: target-windows
[llvm-core.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
blob38c42b349a0fa1fbaf526dd9b3fa2f389645aebf
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.
6 define void @test() {
7         call void @foo( )
8         ret void
11 declare void @foo()