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:
parent
3d96322890
commit
3bb91dafcd
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user