Change these tests to feed the assembly files to opt directly, instead
[oota-llvm.git] / test / Transforms / InstCombine / binop-cast.ll
1 ; RUN: opt %s -instcombine | llvm-dis | 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 }