[Mlir-commits] [mlir] [mlir] Add the concept of ASM dialect aliases (PR #86033)

Markus Böck llvmlistbot at llvm.org
Thu Mar 28 09:57:51 PDT 2024


================
@@ -1715,7 +1715,10 @@ class OpAsmDialectInterface
     OverridableAlias,
     /// An alias was provided and it should be used
     /// (no other hooks will be checked).
-    FinalAlias
+    FinalAlias,
+    /// A dialect alias was provided and it will be used
+    /// (no other hooks will be checked).
+    DialectAlias
----------------
zero9178 wrote:

Is there actually a use case for this and do you need that powerful of a mechanism for the pointer dialect? In the interest of landing this PR with the interface mechanism I'd just drop that mechanism and implement it in another PR of really needed. 

https://github.com/llvm/llvm-project/pull/86033


More information about the Mlir-commits mailing list