[llvm] [CaptureTracking] Compute results with and without return capture (PR #195857)

Nikita Popov via llvm-commits llvm-commits at lists.llvm.org
Thu May 7 03:34:55 PDT 2026


================
@@ -234,13 +236,13 @@ EarliestEscapeAnalysis::getCapturesBefore(const Value *Object,
 
   auto Iter = EarliestEscapes.try_emplace(Object);
   if (Iter.second) {
-    std::pair<Instruction *, CaptureComponents> EarliestCapture =
-        FindEarliestCapture(Object, *DT.getRoot()->getParent(),
-                            /*ReturnCaptures=*/false, DT,
+    std::pair<Instruction *, CaptureResult> EarliestCapture =
+        FindEarliestCapture(Object, *DT.getRoot()->getParent(), DT,
                             CaptureComponents::Provenance);
     if (EarliestCapture.first)
       Inst2Obj[EarliestCapture.first].push_back(Object);
-    Iter.first->second = EarliestCapture;
+    Iter.first->second = {EarliestCapture.first,
+                          EarliestCapture.second.WithoutRet};
----------------
nikic wrote:

Yes, that's right. I'll change this in the PR that will use the additional result.

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


More information about the llvm-commits mailing list