[sanitizer] Improve FreeBSD ASLR detection
[llvm-project.git] / llvm / test / Verifier / scalable-vector-struct-store.ll
blobfb1864a214defe8664d8d517fbcafd6155d5f579
1 ; RUN: not opt -S -verify < %s 2>&1 | FileCheck %s
3 define void @store({ i32, <vscale x 1 x i32> }* %x, i32 %y, <vscale x 1 x i32> %z) {
4 ; CHECK: error: storing unsized types is not allowed
5   %a = insertvalue { i32, <vscale x 1 x i32> } undef, i32 %y, 0
6   %b = insertvalue { i32, <vscale x 1 x i32> } %a,  <vscale x 1 x i32> %z, 1
7   store { i32, <vscale x 1 x i32> } %b, { i32, <vscale x 1 x i32> }* %x
8   ret void