[CombFolds] Fix a typo in a comment, NFC

This commit is contained in:
Hideto Ueno 2024-01-19 04:54:08 -08:00
parent a784585073
commit 3a8733e88f
1 changed files with 1 additions and 1 deletions

View File

@ -1453,7 +1453,7 @@ LogicalResult XorOp::canonicalize(XorOp op, PatternRewriter &rewriter) {
}
}
// and(x, and(...)) -> and(x, ...) -- flatten
// xor(x, xor(...)) -> xor(x, ...) -- flatten
if (tryFlatteningOperands(op, rewriter))
return success();