repo.or.cz
/
llvm-core.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[InstCombine] Signed saturation patterns
[llvm-core.git]
/
test
/
CodeGen
/
Thumb2
/
thumb2-asr2.ll
blob
da050fb670c42e1832097b6c987c75267dbe39b2
1
; RUN: llc -mtriple=thumb-eabi -mcpu=arm1156t2-s -mattr=+thumb2 %s -o - | FileCheck %s
2
3
define i32 @f1(i32 %a) {
4
; CHECK-LABEL: f1:
5
; CHECK: asrs r0, r0, #17
6
%tmp = ashr i32 %a, 17
7
ret i32 %tmp
8
}