Lines Matching full:xor
4 ; xor/sub instruction followed by cmp instruction into a single cmp instruction
5 ; if there is more than one use of xor/sub.
9 ; CHECK-NEXT: %xor = xor i32 %lhs, 5
10 ; CHECK-NEXT: %cmp1 = icmp eq i32 %xor, 10
12 %xor = xor i32 %lhs, 5
13 %cmp1 = icmp eq i32 %xor, 10
14 %cmp2 = icmp eq i32 %xor, %rhs
21 ; CHECK-NEXT: %xor = xor i32 %lhs, %rhs
22 ; CHECK-NEXT: %cmp1 = icmp eq i32 %xor, 0
24 %xor = xor i32 %lhs, %rhs
25 %cmp1 = icmp eq i32 %xor, 0
26 %cmp2 = icmp eq i32 %xor, 32
27 %sel = xor i1 %cmp1, %cmp2