blob: 85c7368a61b612137dd19f9a2750f7c3640c8392 [file] [log] [blame]
Reid Spencerd7c2c2f2006-12-02 20:34:08 +00001; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
Tanya Lattnere7e3f2e2004-11-06 22:07:09 +00002
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