From 129493295f26aef80e706d1a8db48b0d2c0f549a Mon Sep 17 00:00:00 2001 From: Maksim Levental 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 ef5b8b178fbc7..f4cc5baa63355 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) {