[Mlir-commits] [mlir] [mlir][LLVM] Add nneg flag (PR #115498)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Mon Nov 11 01:51:07 PST 2024
=?utf-8?q?Léon?= Frenot <leon.frenot at ens-lyon.fr>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/115498 at github.com>
================
@@ -146,6 +146,9 @@ static void printLLVMOpAttrs(OpAsmPrinter &printer, Operation *op,
} else if (auto iface = dyn_cast<ExactFlagInterface>(op)) {
printer.printOptionalAttrDict(filteredAttrs,
/*elidedAttrs=*/{iface.getIsExactName()});
+ } else if (auto iface = dyn_cast<NonNegFlagInterface>(op)) {
+ printer.printOptionalAttrDict(filteredAttrs,
----------------
lfrenot wrote:
Done!
https://github.com/llvm/llvm-project/pull/115498
More information about the Mlir-commits
mailing list