Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / LoongArch / lsx / intrinsic-ldi-invalid-imm.ll
blob57f6f8e81d91c57313524356b9e8bd7ce52d0caa
1 ; RUN: not llc --mtriple=loongarch64 --mattr=+lsx < %s 2>&1 | FileCheck %s
3 declare <2 x i64> @llvm.loongarch.lsx.vldi(i32)
5 define <2 x i64> @lsx_vldi_lo() nounwind {
6 ; CHECK: llvm.loongarch.lsx.vldi: argument out of range
7 entry:
8   %res = call <2 x i64> @llvm.loongarch.lsx.vldi(i32 -4097)
9   ret <2 x i64> %res
12 define <2 x i64> @lsx_vldi_hi() nounwind {
13 ; CHECK: llvm.loongarch.lsx.vldi: argument out of range
14 entry:
15   %res = call <2 x i64> @llvm.loongarch.lsx.vldi(i32 4096)
16   ret <2 x i64> %res
19 declare <16 x i8> @llvm.loongarch.lsx.vrepli.b(i32)
21 define <16 x i8> @lsx_vrepli_b_lo() nounwind {
22 ; CHECK: llvm.loongarch.lsx.vrepli.b: argument out of range
23 entry:
24   %res = call <16 x i8> @llvm.loongarch.lsx.vrepli.b(i32 -513)
25   ret <16 x i8> %res
28 define <16 x i8> @lsx_vrepli_b_hi() nounwind {
29 ; CHECK: llvm.loongarch.lsx.vrepli.b: argument out of range
30 entry:
31   %res = call <16 x i8> @llvm.loongarch.lsx.vrepli.b(i32 512)
32   ret <16 x i8> %res
35 declare <8 x i16> @llvm.loongarch.lsx.vrepli.h(i32)
37 define <8 x i16> @lsx_vrepli_h_lo() nounwind {
38 ; CHECK: llvm.loongarch.lsx.vrepli.h: argument out of range
39 entry:
40   %res = call <8 x i16> @llvm.loongarch.lsx.vrepli.h(i32 -513)
41   ret <8 x i16> %res
44 define <8 x i16> @lsx_vrepli_h_hi() nounwind {
45 ; CHECK: llvm.loongarch.lsx.vrepli.h: argument out of range
46 entry:
47   %res = call <8 x i16> @llvm.loongarch.lsx.vrepli.h(i32 512)
48   ret <8 x i16> %res
51 declare <4 x i32> @llvm.loongarch.lsx.vrepli.w(i32)
53 define <4 x i32> @lsx_vrepli_w_lo() nounwind {
54 ; CHECK: llvm.loongarch.lsx.vrepli.w: argument out of range
55 entry:
56   %res = call <4 x i32> @llvm.loongarch.lsx.vrepli.w(i32 -513)
57   ret <4 x i32> %res
60 define <4 x i32> @lsx_vrepli_w_hi() nounwind {
61 ; CHECK: llvm.loongarch.lsx.vrepli.w: argument out of range
62 entry:
63   %res = call <4 x i32> @llvm.loongarch.lsx.vrepli.w(i32 512)
64   ret <4 x i32> %res
67 declare <2 x i64> @llvm.loongarch.lsx.vrepli.d(i32)
69 define <2 x i64> @lsx_vrepli_d_lo() nounwind {
70 ; CHECK: llvm.loongarch.lsx.vrepli.d: argument out of range
71 entry:
72   %res = call <2 x i64> @llvm.loongarch.lsx.vrepli.d(i32 -513)
73   ret <2 x i64> %res
76 define <2 x i64> @lsx_vrepli_d_hi() nounwind {
77 ; CHECK: llvm.loongarch.lsx.vrepli.d: argument out of range
78 entry:
79   %res = call <2 x i64> @llvm.loongarch.lsx.vrepli.d(i32 512)
80   ret <2 x i64> %res