1 ; RUN: opt < %s -reassociate -die -S | FileCheck %s
3 define i32 @test1(i32 %a, i32 %b) {
4 %tmp.2 = and i32 %b, %a
5 %tmp.4 = xor i32 %a, -1
7 %tmp.5 = and i32 %tmp.2, %tmp.4
13 define i32 @test2(i32 %a, i32 %b) {
14 %tmp.1 = and i32 %a, 1234
15 %tmp.2 = and i32 %b, %tmp.1
16 %tmp.4 = xor i32 %a, -1
18 %tmp.5 = and i32 %tmp.2, %tmp.4
24 define i32 @test3(i32 %b, i32 %a) {
25 %tmp.1 = add i32 %a, 1234
26 %tmp.2 = add i32 %b, %tmp.1
27 %tmp.4 = sub i32 0, %a
28 ; (b+(a+1234))+-a -> b+1234
29 %tmp.5 = add i32 %tmp.2, %tmp.4
32 ; CHECK: %tmp.5 = add i32 %b, 1234
33 ; CHECK: ret i32 %tmp.5