forked from OSchip/llvm-project
Teach RegionStoreManager::RemoveDeadBindings() about BlockDataRegions. Any VarRegion for a "captured" variable should also be considered live.
llvm-svn: 89928
This commit is contained in:
parent
3378b610ae
commit
94f8c4a7d5
|
@ -1754,6 +1754,19 @@ tryAgain:
|
|||
if (const SymbolicRegion *SymR = dyn_cast<SymbolicRegion>(R))
|
||||
SymReaper.markLive(SymR->getSymbol());
|
||||
|
||||
// For BlockDataRegions, enqueue all VarRegions for that are referenced
|
||||
// via BlockDeclRefExprs.
|
||||
if (const BlockDataRegion *BD = dyn_cast<BlockDataRegion>(R)) {
|
||||
for (BlockDataRegion::referenced_vars_iterator
|
||||
RI = BD->referenced_vars_begin(), RE = BD->referenced_vars_end();
|
||||
RI != RE; ++RI)
|
||||
WorkList.push_back(std::make_pair(state_N, *RI));
|
||||
|
||||
// No possible data bindings on a BlockDataRegion. Continue to the
|
||||
// next region in the worklist.
|
||||
continue;
|
||||
}
|
||||
|
||||
Store store_N = state_N->getStore();
|
||||
RegionBindings B_N = GetRegionBindings(store_N);
|
||||
|
||||
|
|
Loading…
Reference in New Issue