e19d552987
Former-commit-id: 4db48158d3a35497b8f118ab21b5f08ac3d86d98
9 lines
201 B
LLVM
9 lines
201 B
LLVM
; 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
|
|
}
|