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
/
Transforms
/
InstCombine
/
binop-cast.ll
blob
ee43fe00d169bc9c5881466f7175f67acfb39105
1
; RUN: opt < %s -instcombine -S | notcast
2
3
define i32 @testAdd(i32 %X, i32 %Y) {
4
%tmp = add i32 %X, %Y
5
%tmp.l = bitcast i32 %tmp to i32
6
ret i32 %tmp.l
7
}