summaryrefslogtreecommitdiff
path: root/include/llvm/Transforms
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-10-18 14:43:45 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-10-18 14:43:45 +0000
commit0998afdc1eb0f5a3ace07a029ce18a94a8fc2f3c (patch)
tree8258b4b2624291c7a0c119edf6902323742693a5 /include/llvm/Transforms
parent17e6e44298d8da4cd97ba0be66225cdad4670276 (diff)
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
Diffstat (limited to 'include/llvm/Transforms')
-rw-r--r--include/llvm/Transforms/IPO.h2
1 files changed, 1 insertions, 1 deletions
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<BasicBlock*> &BTNE);
+ModulePass *createBlockExtractorPass(std::vector<BasicBlock*> &BTNE);
} // End llvm namespace