Re-land [openmp] Fix warnings when building on Windows with latest MSVC or Clang...
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-ld-non-imm.ll
blobb23436a4483235e7e14cf33a7a2acdedd4b06cfc
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare <32 x i8> @llvm.loongarch.lasx.xvld(i8*, i32)
5 define <32 x i8> @lasx_xvld(i8* %p, i32 %a) nounwind {
6 ; CHECK: immarg operand has non-immediate parameter
7 entry:
8   %res = call <32 x i8> @llvm.loongarch.lasx.xvld(i8* %p, i32 %a)
9   ret <32 x i8> %res