[SimplifyLibCalls] Remove useless bits of this tests.
[oota-llvm.git] / test / Transforms / InstCombine / apint-and-compare.ll
1 ; RUN: opt < %s -instcombine -S | grep and | count 2
2
3 ; Should be optimized to one and.
4 define i1 @test1(i33 %a, i33 %b) {
5         %tmp1 = and i33 %a, 65280
6         %tmp3 = and i33 %b, 65280
7         %tmp = icmp ne i33 %tmp1, %tmp3
8         ret i1 %tmp
9 }
10
11 define i1 @test2(i999 %a, i999 %b) {
12         %tmp1 = and i999 %a, 65280
13         %tmp3 = and i999 %b, 65280
14         %tmp = icmp ne i999 %tmp1, %tmp3
15         ret i1 %tmp
16 }