blob: 85c7368a61b612137dd19f9a2750f7c3640c8392 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001; RUN: llvm-upgrade < %s | llvm-as -o /dev/null -f
2
3; 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