From: Devang Patel Date: Tue, 11 Nov 2008 19:16:41 +0000 (+0000) Subject: Use actual function name in comments. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=772777e105c6fb08db826231bf462cc21f9b07f2;p=oota-llvm.git Use actual function name in comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@59063 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/GlobalDCE.cpp b/lib/Transforms/IPO/GlobalDCE.cpp index 020c70ab375..50bf85ba8ea 100644 --- a/lib/Transforms/IPO/GlobalDCE.cpp +++ b/lib/Transforms/IPO/GlobalDCE.cpp @@ -41,7 +41,7 @@ namespace { private: std::set AliveGlobals; - /// MarkGlobalIsNeeded - the specific global value as needed, and + /// GlobalIsNeeded - the specific global value as needed, and /// recursively mark anything that it uses as also needed. void GlobalIsNeeded(GlobalValue *GV); void MarkUsedGlobalsAsNeeded(Constant *C); @@ -131,7 +131,7 @@ bool GlobalDCE::runOnModule(Module &M) { return Changed; } -/// MarkGlobalIsNeeded - the specific global value as needed, and +/// GlobalIsNeeded - the specific global value as needed, and /// recursively mark anything that it uses as also needed. void GlobalDCE::GlobalIsNeeded(GlobalValue *G) { std::set::iterator I = AliveGlobals.find(G);