[ORC] Add std::tuple support to SimplePackedSerialization.
[llvm-project.git] / llvm / test / Verifier / recursive-type-store.ll
blob1756b0678d6a4f8a8f90b60517dec2dd7dd4494c
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
3 %rt2 = type { i32, { i8, %rt2, i8 }, i32 }
5 define void @f(%rt2 %r, %rt2 *%p) nounwind {
6 entry:
7   ; Check that recursive types trigger an error instead of segfaulting, when
8   ; the recursion isn't through a pointer to the type.
9   ; CHECK: storing unsized types is not allowed
10   store %rt2 %r, %rt2 *%p
11   ret void