1 ; RUN: opt < %s -instcombine -S | grep {xor i32 %a, %b} | count 4
2 ; RUN: opt < %s -instcombine -S | not grep {and}
4 define i32 @func1(i32 %a, i32 %b) nounwind readnone {
6 %b_not = xor i32 %b, -1
7 %0 = and i32 %a, %b_not
8 %a_not = xor i32 %a, -1
9 %1 = and i32 %a_not, %b
14 define i32 @func2(i32 %a, i32 %b) nounwind readnone {
16 %b_not = xor i32 %b, -1
17 %0 = and i32 %b_not, %a
18 %a_not = xor i32 %a, -1
19 %1 = and i32 %a_not, %b
24 define i32 @func3(i32 %a, i32 %b) nounwind readnone {
26 %b_not = xor i32 %b, -1
27 %0 = and i32 %a, %b_not
28 %a_not = xor i32 %a, -1
29 %1 = and i32 %b, %a_not
34 define i32 @func4(i32 %a, i32 %b) nounwind readnone {
36 %b_not = xor i32 %b, -1
37 %0 = and i32 %b_not, %a
38 %a_not = xor i32 %a, -1
39 %1 = and i32 %b, %a_not