mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 23:17:16 +00:00
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
PHINode::Create() giving the (known or expected) number of operands. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@128537 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -929,8 +929,8 @@ bool JumpThreading::SimplifyPartiallyRedundantLoad(LoadInst *LI) {
|
||||
|
||||
// Create a PHI node at the start of the block for the PRE'd load value.
|
||||
pred_iterator PB = pred_begin(LoadBB), PE = pred_end(LoadBB);
|
||||
PHINode *PN = PHINode::Create(LI->getType(), "", LoadBB->begin());
|
||||
PN->reserveOperandSpace(std::distance(PB, PE));
|
||||
PHINode *PN = PHINode::Create(LI->getType(), std::distance(PB, PE), "",
|
||||
LoadBB->begin());
|
||||
PN->takeName(LI);
|
||||
|
||||
// Insert new entries into the PHI for each predecessor. A single block may
|
||||
|
||||
Reference in New Issue
Block a user