Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-insve0-invalid-imm.ll
bloba54fa8515fbafe91a9d338467481e13304db4c7f
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare <8 x i32> @llvm.loongarch.lasx.xvinsve0.w(<8 x i32>, <8 x i32>, i32)
5 define <8 x i32> @lasx_xvinsve0_w_lo(<8 x i32> %va, <8 x i32> %vb) nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvinsve0.w: argument out of range
7 entry:
8   %res = call <8 x i32> @llvm.loongarch.lasx.xvinsve0.w(<8 x i32> %va, <8 x i32> %vb, i32 -1)
9   ret <8 x i32> %res
12 define <8 x i32> @lasx_xvinsve0_w_hi(<8 x i32> %va, <8 x i32> %vb) nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvinsve0.w: argument out of range
14 entry:
15   %res = call <8 x i32> @llvm.loongarch.lasx.xvinsve0.w(<8 x i32> %va, <8 x i32> %vb, i32 8)
16   ret <8 x i32> %res
19 declare <4 x i64> @llvm.loongarch.lasx.xvinsve0.d(<4 x i64>, <4 x i64>, i32)
21 define <4 x i64> @lasx_xvinsve0_d_lo(<4 x i64> %va, <4 x i64> %vb) nounwind {
22 ; CHECK: llvm.loongarch.lasx.xvinsve0.d: argument out of range
23 entry:
24   %res = call <4 x i64> @llvm.loongarch.lasx.xvinsve0.d(<4 x i64> %va, <4 x i64> %vb, i32 -1)
25   ret <4 x i64> %res
28 define <4 x i64> @lasx_xvinsve0_d_hi(<4 x i64> %va, <4 x i64> %vb) nounwind {
29 ; CHECK: llvm.loongarch.lasx.xvinsve0.d: argument out of range
30 entry:
31   %res = call <4 x i64> @llvm.loongarch.lasx.xvinsve0.d(<4 x i64> %va, <4 x i64> %vb, i32 4)
32   ret <4 x i64> %res