fix a globalopt crash on two Adobe-C++ testcases that the recent
[llvm.git] / test / Transforms / InstCombine / zeroext-and-reduce.ll
blob592b8a172f8e1fcb93a16f3d6716f99744e77f0f
1 ; RUN: opt < %s -instcombine -S | \
2 ; RUN:   grep {and i32 %Y, 8}
4 define i32 @test1(i8 %X) {
5         %Y = zext i8 %X to i32          ; <i32> [#uses=1]
6         %Z = and i32 %Y, 65544          ; <i32> [#uses=1]
7         ret i32 %Z