From 07216eabb7e749dc38f521e73485db553cefc8d4 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Fri, 12 Aug 2005 22:13:27 +0000 Subject: [PATCH] add a helper method git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@22767 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/BasicBlock.h | 5 +++++ 1 file changed, 5 insertions(+) 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.