brintos

brintos / llvm-project-archived public Read only

0
0
Text · 560 B · cfaf2ba Raw
20 lines · plain
1; RUN: llc -mtriple=thumb-eabi -no-integrated-as %s -o - | FileCheck %s2 3define i32 @t1(i32 %x, i32 %y) nounwind {4entry:5  ; CHECK: mov r0, r126  %0 = tail call i32 asm "mov $0, $1", "=l,h"(i32 %y) nounwind7  ret i32 %08}9 10; CHECK-LABEL: constraint_r:11; CHECK: foo2 r{{[0-7]+}}, r{{[0-7]+}}12 13define i32 @constraint_r() {14entry: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 %119}20