[Mlir-commits] [mlir] [mlir] Allow using non-attribute properties in declarative rewrite patterns (PR #143071)
Krzysztof Drewniak
llvmlistbot at llvm.org
Thu Jun 19 21:22:55 PDT 2025
================
@@ -300,6 +340,12 @@ std::string SymbolInfoMap::SymbolInfo::getValueAndRangeUse(
LLVM_DEBUG(dbgs() << repl << " (Attr)\n");
return std::string(repl);
}
+ case Kind::Prop: {
+ assert(index < 0);
----------------
krzysz00 wrote:
I don't entirely know, but all the other cases have this
https://github.com/llvm/llvm-project/pull/143071
More information about the Mlir-commits
mailing list