Home | History | Annotate | Download | only in InstCombine
      1 ; RUN: opt < %s -instcombine -S | grep "xor"
      2 ; PR2389
      3 
      4 define i1 @test(i1 %a, i1 %b) {
      5   %A = add i1 %a, %b
      6   ret i1 %A
      7 }
      8