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
}