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

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 3d96322890
commit 3bb91dafcd
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