diff --git a/llvm/include/llvm/BasicBlock.h b/llvm/include/llvm/BasicBlock.h index ce301bd20753..30c1fc783e7a 100644 --- a/llvm/include/llvm/BasicBlock.h +++ b/llvm/include/llvm/BasicBlock.h @@ -101,6 +101,11 @@ public: /// and deletes it. /// void eraseFromParent(); + + /// moveBefore - Unlink this instruction from its current function and + /// insert it into the function that MovePos lives in, right before + /// MovePos. + void moveBefore(BasicBlock *MovePos); /// getSinglePredecessor - If this basic block has a single predecessor block, /// return the block, otherwise return a null pointer.