Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lasx / intrinsic-ld-invalid-imm.ll
blob20dd8a45d7f02ec3e954b87aece413aa5cbc78a9
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_lo(i8* %p) nounwind {
6 ; CHECK: llvm.loongarch.lasx.xvld: argument out of range
7 entry:
8   %res = call <32 x i8> @llvm.loongarch.lasx.xvld(i8* %p, i32 -2049)
9   ret <32 x i8> %res
12 define <32 x i8> @lasx_xvld_hi(i8* %p) nounwind {
13 ; CHECK: llvm.loongarch.lasx.xvld: argument out of range
14 entry:
15   %res = call <32 x i8> @llvm.loongarch.lasx.xvld(i8* %p, i32 2048)
16   ret <32 x i8> %res