blob: ed815f8e1782c53427f2f0c5ea97e4e2672532f7 [file] [log] [blame]
; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
%rt2 = type { i32, { i8, %rt2, i8 }, i32 }
define void @f(%rt2 %r, ptr %p) nounwind {
entry:
; Check that recursive types trigger an error instead of segfaulting, when
; the recursion isn't through a pointer to the type.
; CHECK: storing unsized types is not allowed
store %rt2 %r, ptr %p
ret void
}