blob: 8d79e60649a21c17d00bd617583112abaedaa00b [file] [log] [blame]
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00001; RUN: llvm-as < %s -o /dev/null -f
2
Chris Lattner7dd79b62002-05-02 19:12:21 +00003; It looks like the assembler is not forward resolving the function declaraion
4; correctly.
5
6void "test"()
7begin
8 call void %foo()
9 ret void
10end
11
12declare void "foo"()
13