1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-17 07:34:35 +00:00
llvm-6502/test/Assembler/2002-07-14-OpaqueType.llx
2003-09-15 20:02:53 +00:00

13 lines
173 B
Plaintext

; 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
}