ee43fe00d169bc9c5881466f7175f67acfb39105
[oota-llvm.git] / test / Transforms / InstCombine / binop-cast.ll
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 }