2004-11-06 22:07:09 +00:00
|
|
|
; RUN: llvm-as < %s -o /dev/null -f
|
|
|
|
|
2002-05-02 19:12:21 +00:00
|
|
|
; It looks like the assembler is not forward resolving the function declaraion
|
|
|
|
; correctly.
|
|
|
|
|
|
|
|
void "test"()
|
|
|
|
begin
|
|
|
|
call void %foo()
|
|
|
|
ret void
|
|
|
|
end
|
|
|
|
|
|
|
|
declare void "foo"()
|
|
|
|
|