Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-st-invalid-imm.ll
blob6108ae1883da5bc522894df6e54b8315c3f7be44
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare void @llvm.loongarch.lasx.xvst(<32 x i8>, ptr, i32)
5 define void @lasx_xvst_lo(<32 x i8> %va, ptr %p) nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvst: argument out of range
7 entry:
8   call void @llvm.loongarch.lasx.xvst(<32 x i8> %va, ptr %p, i32 -2049)
9   ret void
12 define void @lasx_xvst_hi(<32 x i8> %va, ptr %p) nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvst: argument out of range
14 entry:
15   call void @llvm.loongarch.lasx.xvst(<32 x i8> %va, ptr %p, i32 2048)
16   ret void