Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[oota-llvm.git] / test / CodeGen / Thumb / inlineasm-thumb.ll
1 ; RUN: llc < %s -march=thumb | FileCheck %s
2 define i32 @t1(i32 %x, i32 %y) nounwind {
3 entry:
4   ; CHECK: mov r0, r12
5   %0 = tail call i32 asm "mov $0, $1", "=l,h"(i32 %y) nounwind
6   ret i32 %0
7 }