Lines Matching refs:MovePos
105 /// insert it into the function that MovePos lives in, right before MovePos.
106 void BasicBlock::moveBefore(BasicBlock *MovePos) {
107 MovePos->getParent()->getBasicBlockList().splice(MovePos,
112 /// insert it into the function that MovePos lives in, right after MovePos.
113 void BasicBlock::moveAfter(BasicBlock *MovePos) {
114 Function::iterator I = MovePos;
115 MovePos->getParent()->getBasicBlockList().splice(++I,