[Mlir-commits] [llvm] [mlir] [MLIR] convert OpAsmDialectInterface using ODS (PR #171488)
Jacques Pienaar
llvmlistbot at llvm.org
Wed Dec 17 21:20:38 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.
----------------
jpienaar wrote:
This also seems to be when there is no body.
https://github.com/llvm/llvm-project/pull/171488
More information about the Mlir-commits
mailing list