mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Use new ETForest accessor.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@36248 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
26c37b1fdc
commit
ee6dcaf906
@ -142,14 +142,14 @@ void CodeExtractor::severSplitPHINodes(BasicBlock *&Header) {
|
||||
// Okay, update dominator sets. The blocks that dominate the new one are the
|
||||
// blocks that dominate TIBB plus the new block itself.
|
||||
if (EF) {
|
||||
DominatorTree::Node* idom = DT->getNode(OldPred)->getIDom();
|
||||
DT->createNewNode(NewBB, idom);
|
||||
EF->addNewBlock(NewBB, idom->getBlock());
|
||||
BasicBlock* idom = EF->getIDom(OldPred);
|
||||
DT->createNewNode(NewBB, DT->getNode(idom));
|
||||
EF->addNewBlock(NewBB, idom);
|
||||
|
||||
// Additionally, NewBB replaces OldPred as the immediate dominator of blocks
|
||||
Function *F = Header->getParent();
|
||||
for (Function::iterator I = F->begin(), E = F->end(); I != E; ++I)
|
||||
if (DT->getNode(I)->getIDom()->getBlock() == OldPred) {
|
||||
if (EF->getIDom(I) == OldPred) {
|
||||
DT->changeImmediateDominator(DT->getNode(I), DT->getNode(NewBB));
|
||||
EF->setImmediateDominator(I, NewBB);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user