Searched refs:NewBB2 (Results 1 - 1 of 1) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DBasicBlockUtils.cpp541 // Move the remaining edges from OrigBB to point to NewBB2.
553 BasicBlock *NewBB2 = 0; local
556 NewBB2 = BasicBlock::Create(OrigBB->getContext(),
559 NewBBs.push_back(NewBB2);
562 BranchInst *BI2 = BranchInst::Create(OrigBB, NewBB2);
564 // Move the remaining edges from OrigBB to point to NewBB2.
567 (*i)->getTerminator()->replaceUsesOfWith(OrigBB, NewBB2);
571 UpdateAnalysisInformation(OrigBB, NewBB2, NewBB2Preds, P, HasLoopExit);
573 // Update the PHI nodes in OrigBB with the values coming from NewBB2.
574 UpdatePHINodes(OrigBB, NewBB2, NewBB2Pred
[all...]

Completed in 156 milliseconds