Eliminate more redundant llvm-as calls.
[oota-llvm.git] / test / Transforms / InstCombine / cast-cast-to-and.ll
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