[ARM] Split large truncating MVE stores
[llvm-complete.git] / test / Verifier / intrinsic-bad-arg-type.ll
blob1a6739e67ccc971a7b418f5634e2956e907eb09a
1 ; RUN: not opt -S -verify 2>&1 < %s | FileCheck %s
3 ; CHECK: Intrinsic has incorrect argument type!
4 ; CHECK-NEXT: <vscale x 4 x i32> (<vscale x 4 x i32>*, i32, <4 x i1>, <vscale x 4 x i32>)* @llvm.masked.load.nxv4i32.p0nxv4i32
6 define <vscale x 4 x i32> @masked_load(<vscale x 4 x i32>* %addr, <4 x i1> %mask, <vscale x 4 x i32> %dst) {
7   %res = call <vscale x 4 x i32> @llvm.masked.load.nxv4i32.p0nxv4i32(<vscale x 4 x i32>* %addr, i32 4, <4 x i1> %mask, <vscale x 4 x i32> %dst)
8   ret <vscale x 4 x i32> %res
10 declare <vscale x 4 x i32> @llvm.masked.load.nxv4i32.p0nxv4i32(<vscale x 4 x i32>*, i32, <4 x i1>, <vscale x 4 x i32>)