[OpenACC] Implement 'device_type' for 'data' construct
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-bsll-invalid-imm.ll
blob1da08a633bd2b864fac441735216be54986c5721
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lasx < %s 2>&1 | FileCheck %s
3 declare <32 x i8> @llvm.loongarch.lasx.xvbsll.v(<32 x i8>, i32)
5 define <32 x i8> @lasx_xvbsll_v_lo(<32 x i8> %va) nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvbsll.v: argument out of range
7 entry:
8   %res = call <32 x i8> @llvm.loongarch.lasx.xvbsll.v(<32 x i8> %va, i32 -1)
9   ret <32 x i8> %res
12 define <32 x i8> @lasx_xvbsll_v_hi(<32 x i8> %va) nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvbsll.v: argument out of range
14 entry:
15   %res = call <32 x i8> @llvm.loongarch.lasx.xvbsll.v(<32 x i8> %va, i32 32)
16   ret <32 x i8> %res