From: Reid Spencer Date: Mon, 18 Oct 2004 14:43:45 +0000 (+0000) Subject: Declare a function in the correct namespace. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=0998afdc1eb0f5a3ace07a029ce18a94a8fc2f3c;p=oota-llvm.git 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 --- diff --git a/include/llvm/Transforms/IPO.h b/include/llvm/Transforms/IPO.h index 7898b464b4a..e85628fba9e 100644 --- a/include/llvm/Transforms/IPO.h +++ b/include/llvm/Transforms/IPO.h @@ -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 &BTNE); +ModulePass *createBlockExtractorPass(std::vector &BTNE); } // End llvm namespace