From 3009f94c0c203f3f7ab06ae5a77da6a8f8bae06e Mon Sep 17 00:00:00 2001 From: Alon Zakai Date: Mon, 24 Jun 2024 12:46:20 -0700 Subject: [PATCH] work --- src/passes/Heap2Local.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/passes/Heap2Local.cpp b/src/passes/Heap2Local.cpp index 9b46413a0d4..5615a3280ab 100644 --- a/src/passes/Heap2Local.cpp +++ b/src/passes/Heap2Local.cpp @@ -264,6 +264,7 @@ struct EscapeAnalyzer { auto seenBefore = !seen.emplace(parent).second; auto reachedInThisAllocation = reached.count(parent) > 0; if (seenBefore && !reachedInThisAllocation) { + // XXX struct.set can be from different allocations! return true; }