Add ability to extract a single basic block into a new function.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12052 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Misha Brukman 2004-03-01 18:27:13 +00:00
parent 1d83e11101
commit a8a06367f8

View File

@ -23,6 +23,10 @@ class Loop;
///
Function* ExtractLoop(Loop *L);
/// ExtractBasicBlock - rip out a basic block into a new function
///
Function* ExtractBasicBlock(BasicBlock *BB);
}
#endif