[OptTable] Fix typo VALUE => VALUES (NFCI) (#121523)
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lsx / intrinsic-ld-invalid-imm.ll
blob9375f9f01a92e603415316d86da8f82e5962e89a
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s
3 declare <16 x i8> @llvm.loongarch.lsx.vld(ptr, i32)
5 define <16 x i8> @lsx_vld_lo(ptr %p) nounwind {
6 ; CHECK: llvm.loongarch.lsx.vld: argument out of range
7 entry:
8   %res = call <16 x i8> @llvm.loongarch.lsx.vld(ptr %p, i32 -2049)
9   ret <16 x i8> %res
12 define <16 x i8> @lsx_vld_hi(ptr %p) nounwind {
13 ; CHECK: llvm.loongarch.lsx.vld: argument out of range
14 entry:
15   %res = call <16 x i8> @llvm.loongarch.lsx.vld(ptr %p, i32 2048)
16   ret <16 x i8> %res