1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s
3 declare void @llvm.loongarch.lsx.vst(<16 x i8>, i8*, i32)
5 define void @lsx_vst_lo(<16 x i8> %va, i8* %p) nounwind {
6 ; CHECK: llvm.loongarch.lsx.vst: argument out of range
8 call void @llvm.loongarch.lsx.vst(<16 x i8> %va, i8* %p, i32 -2049)
12 define void @lsx_vst_hi(<16 x i8> %va, i8* %p) nounwind {
13 ; CHECK: llvm.loongarch.lsx.vst: argument out of range
15 call void @llvm.loongarch.lsx.vst(<16 x i8> %va, i8* %p, i32 2048)