summaryrefslogtreecommitdiff
path: root/test/CodeGen/Thumb2/thumb2-lsl.ll
blob: 05441c85647284a348607e472d4d8d8c4d89f1fa (plain)
1
2
3
4
5
6
7
8
; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s

define i32 @f1(i32 %a) {
; CHECK-LABEL: f1:
; CHECK: lsls r0, r0, #5
    %tmp = shl i32 %a, 5
    ret i32 %tmp
}