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
Indentation change.
[llvm/avr.git]
/
test
/
Transforms
/
InstCombine
/
zeroext-and-reduce.ll
blob
2b4950aec97818a7be6638ef811f05da8c9d4c83
1
; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
2
; RUN: grep {and i32 %Y, 8}
3
4
define i32 @test1(i8 %X) {
5
%Y = zext i8 %X to i32 ; <i32> [#uses=1]
6
%Z = and i32 %Y, 65544 ; <i32> [#uses=1]
7
ret i32 %Z
8
}
9
10