Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / test / CodeGen / Thumb / inlineasm-thumb.ll
blobcfaf2ba7cb4398fa6b7e105c1f668fe540a9eeef
1 ; RUN: llc -mtriple=thumb-eabi -no-integrated-as %s -o - | FileCheck %s
3 define i32 @t1(i32 %x, i32 %y) nounwind {
4 entry:
5   ; CHECK: mov r0, r12
6   %0 = tail call i32 asm "mov $0, $1", "=l,h"(i32 %y) nounwind
7   ret i32 %0
10 ; CHECK-LABEL: constraint_r:
11 ; CHECK: foo2 r{{[0-7]+}}, r{{[0-7]+}}
13 define i32 @constraint_r() {
14 entry:
15   %0 = tail call i32 asm sideeffect "movs $0, #1", "=r"()
16   tail call void asm sideeffect "foo1", "~{r0},~{r1},~{r2},~{r3},~{r4},~{r5},~{r6},~{r7}"()
17   %1 = tail call i32 asm sideeffect "foo2 $0, $1", "=r,r"(i32 %0)
18   ret i32 %1