xref: /llvm-project/llvm/test/Transforms/InstCombine/apint-and-compare.ll (revision acdc419c897f8a9414c7a00c8908ac32312afee2)
1; RUN: opt < %s -passes=instcombine -S | grep and | count 2
2
3; Should be optimized to one and.
4define 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
11define 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}
17