================
@@ -193,9 +193,14 @@ def _get_dict_actual_result(
                     None,
                 )
             )
-            sub_expect_results[sub_expect] = DebuggerExpectMatch(
-                self.expect, sub_expected, value, 
self.provisional_match_context
-            )
+            if value is None:
+                sub_expect_results[sub_expect] = DebuggerExpectMatch(
+                    self.expect, None, None, self.provisional_match_context
+                )
+            else:
+                sub_expect_results[sub_expect] = get_expect_match(
+                    self.expect, sub_expected, value, 
self.provisional_match_context
+                )
----------------
SLTozer wrote:

Added a comment, but also modifying the PR description (which will become the 
commit summary) to be a bit more helpful!

https://github.com/llvm/llvm-project/pull/204160
_______________________________________________
llvm-branch-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-branch-commits

Reply via email to