summaryrefslogtreecommitdiff
path: root/test/Transforms/InstCombine/and-compare.ll
blob: 97a3f17f55ba9248f497501fdf74732e0f3547a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
; RUN: opt %s -instcombine | llvm-dis | \
; RUN:    grep and | count 1

; Should be optimized to one and.
define i1 @test1(i32 %a, i32 %b) {
        %tmp1 = and i32 %a, 65280               ; <i32> [#uses=1]
        %tmp3 = and i32 %b, 65280               ; <i32> [#uses=1]
        %tmp = icmp ne i32 %tmp1, %tmp3         ; <i1> [#uses=1]
        ret i1 %tmp
}