Address issues found by Duncan during post-commit review of r177856.
[oota-llvm.git] / test / Transforms / InstCombine / 2008-05-31-AddBool.ll
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 }