repo.or.cz
/
llvm
/
avr.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Change tests from "opt %s" to "opt < %s" so that opt doesn't see the
[llvm/avr.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
}