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
fix PR4963: folding insertvalue would sometimes turn a packed struct into
[llvm/avr.git]
/
test
/
Transforms
/
InstCombine
/
cast-cast-to-and.ll
blob
1e591ccf493c18d4b56b503309a30f566ba3b9fc
1
; RUN: opt < %s -instcombine -S | \
2
; RUN: not grep i8
3
4
define i32 @test1(i32 %X) {
5
%Y = trunc i32 %X to i8 ; <i8> [#uses=1]
6
%Z = zext i8 %Y to i32 ; <i32> [#uses=1]
7
ret i32 %Z
8
}
9