HomeSort by: relevance | last modified time | path
    Searched refs:BBIdx (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
BreakCriticalEdges.cpp 196 unsigned BBIdx = 0;
203 // Reuse the previous value of BBIdx if it lines up. In cases where we
208 if (PN->getIncomingBlock(BBIdx) != TIBB)
209 BBIdx = PN->getBasicBlockIndex(TIBB);
210 PN->setIncomingBlock(BBIdx, NewBB);
BasicBlockUtils.cpp 546 int BBIdx = 0;
553 // Reuse the previous value of BBIdx if it lines up. In cases where we
558 if (PN.getIncomingBlock(BBIdx) != OldPred)
559 BBIdx = PN.getBasicBlockIndex(OldPred);
561 assert(BBIdx != -1 && "Invalid PHI Index!");
562 PN.setIncomingBlock(BBIdx, NewPred);

Completed in 20 milliseconds