repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Do more to modernize MergeFunctions. Refactor in response to Chris' code review.
[llvm.git]
/
test
/
Assembler
/
2002-05-02-InvalidForwardRef.ll
blob
234545c2936fbc71ecc67c2726ff20215367948a
1
; RUN: llvm-as %s -o /dev/null
2
; It looks like the assembler is not forward resolving the function declaraion
3
; correctly.
4
5
define void @test() {
6
call void @foo( )
7
ret void
8
}
9
10
declare void @foo()