blob: cb8abdf1b4e5eecb2861c6e06ffc2abfa779707a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
; RUN: llvm-as %s -o /dev/null
; RUN: verify-uselistorder %s -preserve-bc-use-list-order
; It looks like the assembler is not forward resolving the function declaraion
; correctly.
define void @test() {
call void @foo( )
ret void
}
declare void @foo()
|