1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-02-18 14:31:27 +00:00
llvm-6502/test/Assembler/2002-07-14-OpaqueType.llx
2006-12-02 04:23:10 +00:00

13 lines
188 B
Plaintext

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