1 ; RUN: opt -S -instcombine < %s | FileCheck %s
3 define i32 @test1(i32 %x, i32 %y) nounwind {
9 ; CHECK-NEXT: %y.not = xor i32 %y, -1
10 ; CHECK-NEXT: %z = or i32 %y.not, %x
11 ; CHECK-NEXT: ret i32 %z
14 define i32 @test2(i32 %x, i32 %y) nounwind {
16 %not = xor i32 %or, -1
20 ; CHECK-NEXT: %x.not = xor i32 %x, -1
21 ; CHECK-NEXT: %z = or i32 %x.not, %y
22 ; CHECK-NEXT: ret i32 %z
25 define i32 @test3(i32 %x, i32 %y) nounwind {
27 %not = xor i32 %xor, -1
31 ; CHECK-NEXT: %y.not = xor i32 %y, -1
32 ; CHECK-NEXT: %z = or i32 %y.not, %x
33 ; CHECK-NEXT: ret i32 %z
36 define i32 @test4(i32 %x, i32 %y) nounwind {
38 %not = xor i32 %xor, -1
42 ; CHECK-NEXT: %x.not = xor i32 %x, -1
43 ; CHECK-NEXT: %z = or i32 %x.not, %y
44 ; CHECK-NEXT: ret i32 %z
47 define i32 @test5(i32 %x, i32 %y) nounwind {
49 %not = xor i32 %and, -1
53 ; CHECK-NEXT: ret i32 -1
56 define i32 @test6(i32 %x, i32 %y) nounwind {
58 %not = xor i32 %and, -1
62 ; CHECK-NEXT: ret i32 -1
65 define i32 @test7(i32 %x, i32 %y) nounwind {
70 ; CHECK-NEXT: %z = or i32 %x, %y
71 ; CHECK-NEXT: ret i32 %z
74 define i32 @test8(i32 %x, i32 %y) nounwind {
76 %xor = xor i32 %x, %not
80 ; CHECK-NEXT: %x.not = xor i32 %x, -1
81 ; CHECK-NEXT: %z = or i32 %x.not, %y
82 ; CHECK-NEXT: ret i32 %z
85 define i32 @test9(i32 %x, i32 %y) nounwind {
87 %xor = xor i32 %not, %y
91 ; CHECK-NEXT: %y.not = xor i32 %y, -1
92 ; CHECK-NEXT: %z = or i32 %y.not, %x
93 ; CHECK-NEXT: ret i32 %z