From: Chris Lattner Date: Sun, 18 Feb 2007 22:10:58 +0000 (+0000) Subject: fix comment X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=4a6f363491c37e0a31f462e72d640d9d4c63177e;p=oota-llvm.git fix comment git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34395 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Transforms/IPO/StripDeadPrototypes.cpp b/lib/Transforms/IPO/StripDeadPrototypes.cpp index d4330642776..7d03ae68abf 100644 --- a/lib/Transforms/IPO/StripDeadPrototypes.cpp +++ b/lib/Transforms/IPO/StripDeadPrototypes.cpp @@ -49,7 +49,7 @@ bool StripDeadPrototypesPass::runOnModule(Module &M) { } } - // Erase dead function prototypes. + // Erase dead global var prototypes. for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ) { GlobalVariable *GV = I++;