[Mlir-commits] [mlir] [mlir] Add a utility method to move operation dependencies. (PR #129975)

Oleksandr Alex Zinenko llvmlistbot at llvm.org
Mon Mar 10 03:16:30 PDT 2025


================
@@ -1089,6 +1096,9 @@ class ErrorCheckingTrackingListener : public TrackingListener {
 
   /// The number of errors that have been encountered.
   int64_t errorCounter = 0;
+
+  /// Latest message from match failure notification.
+  std::string matchFailureMsg = "";
----------------
ftynse wrote:

Can we keep a `Diagnostic`, potentially wrapped in `std::optional/unique_ptr` here? There's more to it than the string...

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


More information about the Mlir-commits mailing list