Declare a function in the correct namespace.

Patch contributed by Morten Ofstad. Thanks Morten!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@17124 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Reid Spencer 2004-10-18 14:43:45 +00:00
parent 17e6e44298
commit 0998afdc1e

View File

@ -142,7 +142,7 @@ ModulePass *createSingleLoopExtractorPass();
// 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