[Mlir-commits] [mlir] [mlir] DCE `RegisteredOperationName::parseAssembly` decl (PR #121730)

Maksim Levental llvmlistbot at llvm.org
Sun Jan 5 20:38:51 PST 2025


https://github.com/makslevental created https://github.com/llvm/llvm-project/pull/121730

This method has no impl.

>From 129493295f26aef80e706d1a8db48b0d2c0f549a Mon Sep 17 00:00:00 2001
From: Maksim Levental <maksim.levental at gmail.com>
Date: Sun, 5 Jan 2025 23:38:23 -0500
Subject: [PATCH] [mlir] DCE `RegisteredOperationName::parseAssembly` decl

This method has no impl.
---
 mlir/include/mlir/IR/OperationSupport.h | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/mlir/include/mlir/IR/OperationSupport.h b/mlir/include/mlir/IR/OperationSupport.h
index ef5b8b178fbc79..f4cc5baa633556 100644
--- a/mlir/include/mlir/IR/OperationSupport.h
+++ b/mlir/include/mlir/IR/OperationSupport.h
@@ -693,9 +693,6 @@ class RegisteredOperationName : public OperationName {
   /// Return the dialect this operation is registered to.
   Dialect &getDialect() const { return *getImpl()->getDialect(); }
 
-  /// Use the specified object to parse this ops custom assembly format.
-  ParseResult parseAssembly(OpAsmParser &parser, OperationState &result) const;
-
   /// Represent the operation name as an opaque pointer. (Used to support
   /// PointerLikeTypeTraits).
   static RegisteredOperationName getFromOpaquePointer(const void *pointer) {



More information about the Mlir-commits mailing list