[PATCH] D77229: [Analyzer][WIP] Avoid handling of LazyCompundVals in IteratorModeling
Balogh, Ádám via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Tue Apr 7 07:01:03 PDT 2020
baloghadamsoftware added a comment.
In D77229#1966885 <https://reviews.llvm.org/D77229#1966885>, @baloghadamsoftware wrote:
> OK, I can reach them from the `ConstructionContext` of the arguments. However, they are temporaries and for some strange reason not alive which means that `checkDeadSymbols()` removes the iterator positions associated to them before the `postCall()` of the call itself. How to correctly prolong their lives until the end of the `postCall()`?
Not so strange, of course, they are destructed before the `postCall()` as they should be, but the question still remains: how to keep them alive for post-checking the call, but not forever.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D77229/new/
https://reviews.llvm.org/D77229
More information about the cfe-commits
mailing list