summaryrefslogtreecommitdiff
path: root/test/Verifier/recursive-type-3.ll
blob: 8968fb5eb61059e73284c4fcf0a21442bbce338a (plain)
1
2
3
4
5
6
7
8
9
10
11
; 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
}