1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 11:42:57 +01:00

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

llvm-svn: 12052
This commit is contained in:
Misha Brukman 2004-03-01 18:27:13 +00:00
parent 3b5ed865eb
commit f5abaea3a5

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