OSDN Git Service

fix comment
authorChris Lattner <sabre@nondot.org>
Sun, 18 Feb 2007 22:10:58 +0000 (22:10 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 18 Feb 2007 22:10:58 +0000 (22:10 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34395 91177308-0d34-0410-b5e6-96231b3b80d8

lib/Transforms/IPO/StripDeadPrototypes.cpp

index d433064..7d03ae6 100644 (file)
@@ -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++;