1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s
3 declare <16 x i8> @llvm.loongarch.lsx.vshuf4i.b(<16 x i8>, i32)
5 define <16 x i8> @lsx_vshuf4i_b_lo(<16 x i8> %va) nounwind {
6 ; CHECK: llvm.loongarch.lsx.vshuf4i.b: argument out of range
8 %res = call <16 x i8> @llvm.loongarch.lsx.vshuf4i.b(<16 x i8> %va, i32 -1)
12 define <16 x i8> @lsx_vshuf4i_b_hi(<16 x i8> %va) nounwind {
13 ; CHECK: llvm.loongarch.lsx.vshuf4i.b: argument out of range
15 %res = call <16 x i8> @llvm.loongarch.lsx.vshuf4i.b(<16 x i8> %va, i32 256)
19 declare <8 x i16> @llvm.loongarch.lsx.vshuf4i.h(<8 x i16>, i32)
21 define <8 x i16> @lsx_vshuf4i_h_lo(<8 x i16> %va) nounwind {
22 ; CHECK: llvm.loongarch.lsx.vshuf4i.h: argument out of range
24 %res = call <8 x i16> @llvm.loongarch.lsx.vshuf4i.h(<8 x i16> %va, i32 -1)
28 define <8 x i16> @lsx_vshuf4i_h_hi(<8 x i16> %va) nounwind {
29 ; CHECK: llvm.loongarch.lsx.vshuf4i.h: argument out of range
31 %res = call <8 x i16> @llvm.loongarch.lsx.vshuf4i.h(<8 x i16> %va, i32 256)
35 declare <4 x i32> @llvm.loongarch.lsx.vshuf4i.w(<4 x i32>, i32)
37 define <4 x i32> @lsx_vshuf4i_w_lo(<4 x i32> %va) nounwind {
38 ; CHECK: llvm.loongarch.lsx.vshuf4i.w: argument out of range
40 %res = call <4 x i32> @llvm.loongarch.lsx.vshuf4i.w(<4 x i32> %va, i32 -1)
44 define <4 x i32> @lsx_vshuf4i_w_hi(<4 x i32> %va) nounwind {
45 ; CHECK: llvm.loongarch.lsx.vshuf4i.w: argument out of range
47 %res = call <4 x i32> @llvm.loongarch.lsx.vshuf4i.w(<4 x i32> %va, i32 256)
51 declare <2 x i64> @llvm.loongarch.lsx.vshuf4i.d(<2 x i64>, <2 x i64>, i32)
53 define <2 x i64> @lsx_vshuf4i_d_lo(<2 x i64> %va, <2 x i64> %vb) nounwind {
54 ; CHECK: llvm.loongarch.lsx.vshuf4i.d: argument out of range
56 %res = call <2 x i64> @llvm.loongarch.lsx.vshuf4i.d(<2 x i64> %va, <2 x i64> %vb, i32 -1)
60 define <2 x i64> @lsx_vshuf4i_d_hi(<2 x i64> %va, <2 x i64> %vb) nounwind {
61 ; CHECK: llvm.loongarch.lsx.vshuf4i.d: argument out of range
63 %res = call <2 x i64> @llvm.loongarch.lsx.vshuf4i.d(<2 x i64> %va, <2 x i64> %vb, i32 256)