Don't do: "(X & 4) >> 1 == 2 --> (X & 4) == 4" if there are more than one uses of...
[oota-llvm.git] / test / Transforms / InstCombine / 2004-08-10-BoolSetCC.ll
1 ; RUN: llvm-as < %s | opt -instcombine | llvm-dis | \
2 ; RUN:    grep {ret i1 false}
3
4 define i1 @test(i1 %V) {
5         %Y = icmp ult i1 %V, false              ; <i1> [#uses=1]
6         ret i1 %Y
7 }
8