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
[ARM] Better OR's for MVE compares
[llvm-core.git]
/
test
/
Transforms
/
InstCombine
/
2006-02-13-DemandedMiscompile.ll
blob
10541ef703255a32efffae055ea3cfc1f83a1e74
1
; RUN: opt < %s -instcombine -S | \
2
; RUN: not grep undef
3
4
define i32 @test(i8 %A) {
5
%B = sext i8 %A to i32 ; <i32> [#uses=1]
6
%C = ashr i32 %B, 8 ; <i32> [#uses=1]
7
ret i32 %C
8
}
9
10