[Mlir-commits] [mlir] [mlir] MLIR-QUERY slice-matchers implementation (PR #115670)

Jacques Pienaar llvmlistbot at llvm.org
Mon Apr 21 08:28:05 PDT 2025


================
@@ -59,15 +59,15 @@ struct NameOpMatcher {
   NameOpMatcher(StringRef name) : name(name) {}
   bool match(Operation *op) { return op->getName().getStringRef() == name; }
 
-  StringRef name;
+  std::string name;
----------------
jpienaar wrote:

Let's revert for now. Then can evaluate need with let when we get to let.

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


More information about the Mlir-commits mailing list