[llvm-commits] CVS: llvm/include/llvm/Transforms/IPO.h

Reid Spencer reid at x10sys.com
Mon Oct 18 07:44:23 PDT 2004



Changes in directory llvm/include/llvm/Transforms:

IPO.h updated: 1.36 -> 1.37
---
Log message:

Declare a function in the correct namespace.

Patch contributed by Morten Ofstad. Thanks Morten!


---
Diffs of the changes:  (+1 -1)

Index: llvm/include/llvm/Transforms/IPO.h
diff -u llvm/include/llvm/Transforms/IPO.h:1.36 llvm/include/llvm/Transforms/IPO.h:1.37
--- llvm/include/llvm/Transforms/IPO.h:1.36	Wed Oct  6 23:12:02 2004
+++ llvm/include/llvm/Transforms/IPO.h	Mon Oct 18 09:43:45 2004
@@ -142,7 +142,7 @@
 // createBlockExtractorPass - This pass extracts all blocks (except those
 // specified in the argument list) from the functions in the module.
 //
-ModulePass *llvm::createBlockExtractorPass(std::vector<BasicBlock*> &BTNE);
+ModulePass *createBlockExtractorPass(std::vector<BasicBlock*> &BTNE);
 
 } // End llvm namespace
 






More information about the llvm-commits mailing list