]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - opencl/llvm.git/blob - test/CodeGen/Thumb2/thumb2-asr.ll
Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[opencl/llvm.git] / test / CodeGen / Thumb2 / thumb2-asr.ll
1 ; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
3 define i32 @f1(i32 %a, i32 %b) {
4 ; CHECK-LABEL: f1:
5 ; CHECK: asrs r0, r1
6     %tmp = ashr i32 %a, %b
7     ret i32 %tmp
8 }