[NFC][RemoveDIs] Prefer iterators over inst-pointers in InstCombine
[llvm-project.git] / llvm / test / Verifier / scalable-vector-struct-load.ll
blobdd1466d96d1358b3cf393cff9a15a561ecd15a0a
1 ; RUN: not opt -S -passes=verify < %s 2>&1 | FileCheck %s
3 define <vscale x 1 x i32> @load(ptr %x) {
4 ; CHECK: error: loading unsized types is not allowed
5   %a = load { i32, <vscale x 1 x i32> }, ptr %x
6   %b = extractvalue { i32, <vscale x 1 x i32> } %a, 1
7   ret <vscale x 1 x i32> %b