Move loop extractor to the IPO header

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12374 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2004-03-14 02:36:34 +00:00
parent efddcfa0df
commit 4eddf37ee3
2 changed files with 8 additions and 8 deletions

View File

@ -134,6 +134,14 @@ Pass *createIPConstantPropagationPass();
Pass *createSwapElementsPass();
Pass *createSortElementsPass();
//===----------------------------------------------------------------------===//
//
// LoopExtractor - This pass moves every natural loop into its own function.
// Mostly useful in debugging via bugpoint.
//
Pass *createLoopExtractorPass();
} // End llvm namespace
#endif

View File

@ -137,14 +137,6 @@ Pass *createInstructionCombiningPass();
FunctionPass *createLICMPass();
//===----------------------------------------------------------------------===//
//
// LoopExtractor - This pass moves every natural loop into its own function.
// Mostly useful in debugging via bugpoint.
//
FunctionPass *createLoopExtractorPass();
//===----------------------------------------------------------------------===//
//
// PiNodeInsertion - This pass inserts single entry Phi nodes into basic blocks