From 0998afdc1eb0f5a3ace07a029ce18a94a8fc2f3c Mon Sep 17 00:00:00 2001 From: Reid Spencer Date: Mon, 18 Oct 2004 14:43:45 +0000 Subject: [PATCH] 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 --- include/llvm/Transforms/IPO.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- 2.34.1