repo.or.cz
/
llvm
/
msp430.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge branch 'master' into msp430
[llvm/msp430.git]
/
test
/
Assembler
/
2002-05-02-InvalidForwardRef.ll
blob
00a0a015377676138c10b1d13656da855af5817d
1
; RUN: llvm-as %s -o /dev/null -f
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()