mirror of
https://github.com/jeremysrand/llvm-65816.git
synced 2024-11-05 00:06:07 +00:00
11 lines
164 B
LLVM
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
|
|
}
|
|
|