8d79e60649a21c17d00bd617583112abaedaa00b
[oota-llvm.git] / test / Assembler / 2002-05-02-InvalidForwardRef.ll
1 ; RUN: llvm-as < %s -o /dev/null -f
2
3 ; It looks like the assembler is not forward resolving the function declaraion
4 ; correctly.
5
6 void "test"()
7 begin
8         call void %foo()
9         ret void
10 end
11
12 declare void "foo"()
13