Move loop extractor to the IPO header

llvm-svn: 12374
This commit is contained in:
Chris Lattner 2004-03-14 02:36:34 +00:00
parent 692a47aeb9
commit 6d24a7ce8a
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