recursive-type-1.ll 342 B

123456789101112
  1. ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
  2. %rt2 = type { i32, { i8, %rt2, i8 }, i32 }
  3. define i32 @main() nounwind {
  4. entry:
  5. ; Check that recursive types trigger an error instead of segfaulting, when
  6. ; the recursion isn't through a pointer to the type.
  7. ; CHECK: Cannot allocate unsized type
  8. %0 = alloca %rt2
  9. ret i32 0
  10. }