Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame^] | 1 | ; 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 | |||||
6 | void "test"() | ||||
7 | begin | ||||
8 | call void %foo() | ||||
9 | ret void | ||||
10 | end | ||||
11 | |||||
12 | declare void "foo"() | ||||
13 |