Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / llvm / test / CodeGen / LoongArch / inline-asm-constraint-error.ll
blob570fd438be97bf100d45b77695ff058dcc30ad26
1 ; RUN: not llc --mtriple=loongarch32 < %s 2>&1 | FileCheck %s
2 ; RUN: not llc --mtriple=loongarch64 < %s 2>&1 | FileCheck %s
4 define void @constraint_l() {
5 ; CHECK: error: value out of range for constraint 'l'
6   tail call void asm sideeffect "lu12i.w $$a0, $0", "l"(i32 32768)
7 ; CHECK: error: value out of range for constraint 'l'
8   tail call void asm sideeffect "lu12i.w $$a0, $0", "l"(i32 -32769)
9   ret void
12 define void @constraint_I() {
13 ; CHECK: error: value out of range for constraint 'I'
14   tail call void asm sideeffect "addi.w $$a0, $$a0, $0", "I"(i32 2048)
15 ; CHECK: error: value out of range for constraint 'I'
16   tail call void asm sideeffect "addi.w $$a0, $$a0, $0", "I"(i32 -2049)
17   ret void
20 define void @constraint_J() {
21 ; CHECK: error: value out of range for constraint 'J'
22   tail call void asm sideeffect "addi.w $$a0, $$a0, $$0", "J"(i32 1)
23   ret void
26 define void @constraint_K() {
27 ; CHECK: error: value out of range for constraint 'K'
28   tail call void asm sideeffect "andi.w $$a0, $$a0, $0", "K"(i32 4096)
29 ; CHECK: error: value out of range for constraint 'K'
30   tail call void asm sideeffect "andi.w $$a0, $$a0, $0", "K"(i32 -1)
31   ret void
34 define void @constraint_f() nounwind {
35 ; CHECK: error: couldn't allocate input reg for constraint 'f'
36   tail call void asm "fadd.s $$fa0, $$fa0, $0", "f"(float 0.0)
37 ; CHECK: error: couldn't allocate input reg for constraint 'f'
38   tail call void asm "fadd.s $$fa0, $$fa0, $0", "f"(double 0.0)
39   ret void
42 define void @constraint_r_vec() nounwind {
43 ; CHECK: error: couldn't allocate input reg for constraint 'r'
44   tail call void asm "add.w $$a0, $$a0, $0", "r"(<4 x i32> zeroinitializer)
45   ret void