[NFC] Removed extra text in comments

This commit is contained in:
Dávid Bolvanský 2021-01-16 22:48:23 +01:00
parent d8fc27301d
commit bfd75bdf3f
1 changed files with 1 additions and 1 deletions

View File

@ -2236,7 +2236,7 @@ static Value *SimplifyOrInst(Value *Op0, Value *Op1, const SimplifyQuery &Q,
// Commute the 'or' operands.
// (A ^ B) | (A & ~B) -> (A ^ B)
// (A ^ B) | (~B & A) -> (A ^ B)D94870
// (A ^ B) | (~B & A) -> (A ^ B)
// (B ^ A) | (A & ~B) -> (B ^ A)
// (B ^ A) | (~B & A) -> (B ^ A)
if (match(Op0, m_Xor(m_Value(A), m_Value(B))) &&