Home | History | Annotate | Download | only in Thumb
      1 ; RUN: llc -mtriple=thumb-eabi %s -o - | FileCheck %s
      2 
      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
      8 }
      9