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