1; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s 2 3declare void @llvm.loongarch.lasx.xvst(<32 x i8>, ptr, i32) 4 5define void @lasx_xvst(<32 x i8> %va, ptr %p, i32 %b) nounwind { 6; CHECK: immarg operand has non-immediate parameter 7entry: 8 call void @llvm.loongarch.lasx.xvst(<32 x i8> %va, ptr %p, i32 %b) 9 ret void 10} 11