[Mlir-commits] [llvm] [mlir] [MLIR] convert OpAsmDialectInterface using ODS (PR #171488)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Thu Dec 18 01:46:00 PST 2025
================
@@ -85,6 +85,16 @@ class StaticInterfaceMethod<string desc, string retTy, string methodName,
: InterfaceMethod<desc, retTy, methodName, args, methodBody,
defaultImplementation>;
+// This class represents a pure virtual interface method.
+class PureVirtualInterfaceMethod<string desc, string retTy, string methodName,
+ dag args = (ins)>
+ : InterfaceMethod<desc, retTy, methodName, args>;
+
+// This class represents a interface method declaration.
----------------
aidint wrote:
also the same reasoning
https://github.com/llvm/llvm-project/pull/171488
More information about the Mlir-commits
mailing list