summaryrefslogtreecommitdiff
path: root/test/Assembler/2002-07-14-OpaqueType.llx
blob: b4de7e720f7ee97c341896f94380a4227a4ff54c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
; Test that opaque types are preserved correctly
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
;

%Ty = type opaque

implementation

%Ty* %func() {
	ret %Ty* null
}