aboutsummaryrefslogtreecommitdiff
path: root/llvm/test/Verifier/scalable-vector-struct-load.ll
blob: dd1466d96d1358b3cf393cff9a15a561ecd15a0a (plain)
1
2
3
4
5
6
7
8
; RUN: not opt -S -passes=verify < %s 2>&1 | FileCheck %s

define <vscale x 1 x i32> @load(ptr %x) {
; CHECK: error: loading unsized types is not allowed
  %a = load { i32, <vscale x 1 x i32> }, ptr %x
  %b = extractvalue { i32, <vscale x 1 x i32> } %a, 1
  ret <vscale x 1 x i32> %b
}