Bump version to 19.1.0-rc3
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-andi-invalid-imm.ll
blob60f0b765f9546e160691bdc110a711be8b4a16ad
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare <32 x i8> @llvm.loongarch.lasx.xvandi.b(<32 x i8>, i32)
5 define <32 x i8> @lasx_xvandi_b_lo(<32 x i8> %va) nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvandi.b: argument out of range
7 entry:
8   %res = call <32 x i8> @llvm.loongarch.lasx.xvandi.b(<32 x i8> %va, i32 -1)
9   ret <32 x i8> %res
12 define <32 x i8> @lasx_xvandi_b_hi(<32 x i8> %va) nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvandi.b: argument out of range
14 entry:
15   %res = call <32 x i8> @llvm.loongarch.lasx.xvandi.b(<32 x i8> %va, i32 256)
16   ret <32 x i8> %res