[Mlir-commits] [mlir] [mlir] Print aliases for recursive types (PR #110346)

Mehdi Amini llvmlistbot at llvm.org
Sat Sep 28 14:21:21 PDT 2024


================
@@ -545,6 +545,10 @@ class SymbolAlias {
   bool isType : 1;
   /// A flag indicating whether this alias may be deferred or not.
   bool isDeferrable : 1;
+
+public:
+  /// Used to avoid printing incomplete aliases for recursive types.
+  bool isPrinted = false;
----------------
joker-eph wrote:

Textual parsing/printing isn't considered to be performance-sensitive components.

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


More information about the Mlir-commits mailing list