repo.or.cz
/
llvm
/
stm8.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Silence -Wunused-variable in release builds.
[llvm/stm8.git]
/
test
/
Assembler
/
2002-07-25-ReturnPtrFunction.ll
blob
6988fad8398e67559216753a4562fc22502bc0a4
1
; Test that returning a pointer to a function causes the disassembler to print
2
; the right thing.
3
;
4
; RUN: llvm-as < %s | llvm-dis | llvm-as
5
6
declare void (i32)* @foo()
7
8
define void @test() {
9
call void (i32)* ()* @foo( ) ; <%ty*>:1 [#uses=0]
10
ret void
11
}
12
13