1
0
mirror of https://github.com/c64scene-ar/llvm-6502.git synced 2025-01-23 17:32:49 +00:00
llvm-6502/test/Assembler/2002-07-14-OpaqueType.llx
Chris Lattner 161036fd22 New testcase to track opaque type bug
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2904 91177308-0d34-0410-b5e6-96231b3b80d8
2002-07-14 23:25:14 +00:00

13 lines
153 B
Plaintext

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