mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-04 22:07:27 +00:00
12 lines
282 B
LLVM
12 lines
282 B
LLVM
|
; RUN: llvm-as %s -o /dev/null 2>&1
|
||
|
|
||
|
%rt2 = type { i32, { i8, %rt2*, i8 }, i32 }
|
||
|
|
||
|
define i32 @main() nounwind {
|
||
|
entry:
|
||
|
; Check that linked-list-style recursive types where the recursion is through
|
||
|
; a pointer of the type is valid for an alloca.
|
||
|
%0 = alloca %rt2
|
||
|
ret i32 0
|
||
|
}
|