From: Jakub Kuderski Date: Thu, 8 Dec 2022 16:22:46 +0000 (-0500) Subject: [mlir][arith] Add missing heading comment. NFC. X-Git-Tag: upstream/17.0.6~24670 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=690bed8c62c77e85381953650f0457b7095692df;p=platform%2Fupstream%2Fllvm.git [mlir][arith] Add missing heading comment. NFC. --- diff --git a/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td b/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td index 6c7244b..d2fedaa 100644 --- a/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td +++ b/mlir/include/mlir/Dialect/Arith/IR/ArithOps.td @@ -221,6 +221,9 @@ def Arith_AddIOp : Arith_TotalIntBinaryOp<"addi", [Commutative]> { let hasCanonicalizer = 1; } +//===----------------------------------------------------------------------===// +// AddUIExtendedOp +//===----------------------------------------------------------------------===// def Arith_AddUIExtendedOp : Arith_Op<"addui_extended", [Pure, Commutative, AllTypesMatch<["lhs", "rhs", "sum"]>]> {