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:
@@ -3634,8 +3634,7 @@ int LLParser::ParsePHI(Instruction *&Inst, PerFunctionState &PFS) {
|
||||
if (!Ty->isFirstClassType())
|
||||
return Error(TypeLoc, "phi node must have first class type");
|
||||
|
||||
PHINode *PN = PHINode::Create(Ty);
|
||||
PN->reserveOperandSpace(PHIVals.size());
|
||||
PHINode *PN = PHINode::Create(Ty, PHIVals.size());
|
||||
for (unsigned i = 0, e = PHIVals.size(); i != e; ++i)
|
||||
PN->addIncoming(PHIVals[i].first, PHIVals[i].second);
|
||||
Inst = PN;
|
||||
|
||||
Reference in New Issue
Block a user