mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-29 07:53:33 +00:00
Fix a use-iterator-after-invalidate error
AnalysisResult::getResultImpl reuses an iterator into a DenseMap after inserting elements into it. This change adds code to recompute the iterator before the second use. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@230718 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
d51be017f0
commit
26f67b5a27
@ -471,6 +471,12 @@ private:
|
||||
dbgs() << "Running analysis: " << P.name() << "\n";
|
||||
AnalysisResultListT &ResultList = AnalysisResultLists[&IR];
|
||||
ResultList.emplace_back(PassID, P.run(IR, this));
|
||||
|
||||
// P.run may have inserted elements into AnalysisResults and invalidated
|
||||
// RI.
|
||||
RI = AnalysisResults.find(std::make_pair(PassID, &IR));
|
||||
assert(RI != AnalysisResults.end() && "we just inserted it!");
|
||||
|
||||
RI->second = std::prev(ResultList.end());
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user