llvm-65816/test/Assembler/2002-07-14-OpaqueType.ll

11 lines
164 B
LLVM

; Test that opaque types are preserved correctly
; RUN: llvm-as < %s | llvm-dis | llvm-as | llvm-dis
;
%Ty = type opaque
define %Ty* @func() {
ret %Ty* null
}