Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lsx / intrinsic-st-invalid-imm.ll
blob64518380964b4f062c0355a9037c62074086328b
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s
3 declare void @llvm.loongarch.lsx.vst(<16 x i8>, i8*, i32)
5 define void @lsx_vst_lo(<16 x i8> %va, i8* %p) nounwind {
6 ; CHECK: llvm.loongarch.lsx.vst: argument out of range
7 entry:
8   call void @llvm.loongarch.lsx.vst(<16 x i8> %va, i8* %p, i32 -2049)
9   ret void
12 define void @lsx_vst_hi(<16 x i8> %va, i8* %p) nounwind {
13 ; CHECK: llvm.loongarch.lsx.vst: argument out of range
14 entry:
15   call void @llvm.loongarch.lsx.vst(<16 x i8> %va, i8* %p, i32 2048)
16   ret void