From: Chris Lattner Date: Fri, 12 Aug 2005 22:13:27 +0000 (+0000) Subject: add a helper method X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=07216eabb7e749dc38f521e73485db553cefc8d4;p=oota-llvm.git add a helper method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22767 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/include/llvm/BasicBlock.h b/include/llvm/BasicBlock.h index ce301bd2075..30c1fc783e7 100644 --- a/include/llvm/BasicBlock.h +++ b/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.