diff options
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Transforms/IPO.h | 5 | ||||
| -rw-r--r-- | llvm/lib/Transforms/IPO/LoopExtractor.cpp | 4 | 
2 files changed, 5 insertions, 4 deletions
diff --git a/llvm/include/llvm/Transforms/IPO.h b/llvm/include/llvm/Transforms/IPO.h index d2371de5176..a0515a7f5e0 100644 --- a/llvm/include/llvm/Transforms/IPO.h +++ b/llvm/include/llvm/Transforms/IPO.h @@ -19,6 +19,7 @@  namespace llvm { +class FunctionPass;  class ModulePass;  class Function;  class BasicBlock; @@ -150,12 +151,12 @@ ModulePass *createIPSCCPPass();  /// createLoopExtractorPass - This pass extracts all natural loops from the  /// program into a function if it can.  /// -ModulePass *createLoopExtractorPass(); +FunctionPass *createLoopExtractorPass();  /// createSingleLoopExtractorPass - This pass extracts one natural loop from the  /// program into a function if it can.  This is used by bugpoint.  /// -ModulePass *createSingleLoopExtractorPass(); +FunctionPass *createSingleLoopExtractorPass();  // createBlockExtractorPass - This pass extracts all blocks (except those  // specified in the argument list) from the functions in the module. diff --git a/llvm/lib/Transforms/IPO/LoopExtractor.cpp b/llvm/lib/Transforms/IPO/LoopExtractor.cpp index 638820e3986..4fd2335c280 100644 --- a/llvm/lib/Transforms/IPO/LoopExtractor.cpp +++ b/llvm/lib/Transforms/IPO/LoopExtractor.cpp @@ -61,7 +61,7 @@ namespace {  // createLoopExtractorPass - This pass extracts all natural loops from the  // program into a function if it can.  // -ModulePass *llvm::createLoopExtractorPass() { return new LoopExtractor(); } +FunctionPass *llvm::createLoopExtractorPass() { return new LoopExtractor(); }  bool LoopExtractor::runOnFunction(Function &F) {    LoopInfo &LI = getAnalysis<LoopInfo>(); @@ -131,7 +131,7 @@ bool LoopExtractor::runOnFunction(Function &F) {  // createSingleLoopExtractorPass - This pass extracts one natural loop from the  // program into a function if it can.  This is used by bugpoint.  // -ModulePass *llvm::createSingleLoopExtractorPass() { +FunctionPass *llvm::createSingleLoopExtractorPass() {    return new SingleLoopExtractor();  }  | 

