projects
/
oota-llvm.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Mass update to CodeGen tests to use CHECK-LABEL for labels corresponding to function...
[oota-llvm.git]
/
test
/
CodeGen
/
Thumb2
/
thumb2-lsl.ll
1
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
2
3
define i32 @f1(i32 %a) {
4
; CHECK-LABEL: f1:
5
; CHECK: lsls r0, r0, #5
6
%tmp = shl i32 %a, 5
7
ret i32 %tmp
8
}