summaryrefslogtreecommitdiff
path: root/test/Verifier/recursive-type-2.ll
blob: 5f2f66fa1b11fd55f28165765b4d66c6af00e31a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s

%rt1 = type { i32, { i8, %rt2, i8 }, i32 }
%rt2 = type { i64, { i6, %rt3 } }
%rt3 = type { %rt1 }

define i32 @main() nounwind {
entry:
  ; Check that mutually recursive types trigger an error instead of segfaulting,
  ; when the recursion isn't through a pointer to the type.
  ; CHECK: Cannot allocate unsized type
  %0 = alloca %rt2
  ret i32 0
}