From 0c1cf753008f375169c4d3a113b7b4f1120dddba Mon Sep 17 00:00:00 2001 From: Maksim Levental Date: Mon, 6 Jan 2025 07:12:59 -0500 Subject: [PATCH] [mlir] DCE `RegisteredOperationName::parseAssembly` decl (#121730) --- 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) {