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
Remove wasteful caching. This isn't needed for correctness because any function
[llvm.git]
/
test
/
Assembler
/
2002-07-14-OpaqueType.ll
blob
662fb0f31c1d30e7c86eb244affc21264d4a7685
1
; Test that opaque types are preserved correctly
2
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
3
;
4
5
%Ty = type opaque
6
7
define %Ty* @func() {
8
ret %Ty* null
9
}
10