diff options
author | Jay Foad <jay.foad@gmail.com> | 2011-03-30 11:28:46 +0000 |
---|---|---|
committer | Jay Foad <jay.foad@gmail.com> | 2011-03-30 11:28:46 +0000 |
commit | 52131344a2cbb29f60b75417d32f886032007b1f (patch) | |
tree | c82d45a3c7045d0fe4b46727a46b1ede4a8e4e64 /llvm/lib/Transforms/Instrumentation/PathProfiling.cpp | |
parent | e0938d8a87a6c8b12f68fbe784a270dd2d552331 (diff) | |
download | bcm5719-llvm-52131344a2cbb29f60b75417d32f886032007b1f.tar.gz bcm5719-llvm-52131344a2cbb29f60b75417d32f886032007b1f.zip |
Remove PHINode::reserveOperandSpace(). Instead, add a parameter to
PHINode::Create() giving the (known or expected) number of operands.
llvm-svn: 128537
Diffstat (limited to 'llvm/lib/Transforms/Instrumentation/PathProfiling.cpp')
-rw-r--r-- | llvm/lib/Transforms/Instrumentation/PathProfiling.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp b/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp index ca2c6fbd95d..830251c1b12 100644 --- a/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp +++ b/llvm/lib/Transforms/Instrumentation/PathProfiling.cpp @@ -931,9 +931,9 @@ void PathProfiler::preparePHI(BLInstrumentationNode* node) { BasicBlock::iterator insertPoint = block->getFirstNonPHI(); pred_iterator PB = pred_begin(node->getBlock()), PE = pred_end(node->getBlock()); - PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), "pathNumber", + PHINode* phi = PHINode::Create(Type::getInt32Ty(*Context), + std::distance(PB, PE), "pathNumber", insertPoint ); - phi->reserveOperandSpace(std::distance(PB, PE)); node->setPathPHI(phi); node->setStartingPathNumber(phi); node->setEndingPathNumber(phi); |