repo.or.cz
/
llvm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Verify the predicates on icmp/fcmp. Suggested by Jeff Yasskin!
[llvm.git]
/
test
/
CodeGen
/
Thumb2
/
thumb2-lsr.ll
blob
7cbee54f381f1d9b70738b5e336873dc0a6f647e
1
; RUN: llc < %s -march=thumb -mattr=+thumb2 | FileCheck %s
2
3
define i32 @f1(i32 %a) {
4
; CHECK: f1:
5
; CHECK: lsrs r0, r0, #13
6
%tmp = lshr i32 %a, 13
7
ret i32 %tmp
8
}