[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / Verifier / recursive-type-load.ll
blob62a094deabeb15b45b2ca49f6aad6da34cd9423a
1 ; RUN: not llvm-as %s -o /dev/null 2>&1 | FileCheck %s
3 %rt2 = type { i32, { i8, %rt2, i8 }, i32 }
5 define i32 @f(ptr %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: loading unsized types is not allowed
10   %0 = load %rt2, ptr %p
11   ret i32 %0