Fix a comment (test commit).

llvm-svn: 309192
This commit is contained in:
Hiroshi Yamauchi 2017-07-26 21:54:43 +00:00
parent b0e6229742
commit 0445e31c88
1 changed files with 1 additions and 1 deletions

View File

@ -1600,7 +1600,7 @@ Instruction *InstCombiner::visitSub(BinaryOperator &I) {
return BinaryOperator::CreateNeg(Y);
}
// (sub (or A, B) (xor A, B)) --> (and A, B)
// (sub (or A, B), (xor A, B)) --> (and A, B)
{
Value *A, *B;
if (match(Op1, m_Xor(m_Value(A), m_Value(B))) &&