From bafc3a2b2254b0bb2a18f2654d43bbaecd42c03e Mon Sep 17 00:00:00 2001 From: Jakub Kuderski Date: Wed, 7 Dec 2022 17:21:41 -0500 Subject: [PATCH] [mlir][arith] Fix comment typo. NFC. --- mlir/lib/Dialect/Arith/IR/ArithOps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/lib/Dialect/Arith/IR/ArithOps.cpp b/mlir/lib/Dialect/Arith/IR/ArithOps.cpp index 0a2a8a9..dd6e860 100644 --- a/mlir/lib/Dialect/Arith/IR/ArithOps.cpp +++ b/mlir/lib/Dialect/Arith/IR/ArithOps.cpp @@ -249,7 +249,7 @@ arith::AddUIExtendedOp::fold(ArrayRef operands, return success(); } - // addui_overflow(constant_a, constant_b) -> constant_sum, constant_carry + // addui_extended(constant_a, constant_b) -> constant_sum, constant_carry // Let the `constFoldBinaryOp` utility attempt to fold the sum of both // operands. If that succeeds, calculate the overflow bit based on the sum // and the first (constant) operand, `lhs`. Note that we cannot simply call -- 2.7.4