fix comment

llvm-svn: 34395
This commit is contained in:
Chris Lattner 2007-02-18 22:10:58 +00:00
parent a6f54c0e2c
commit 9f4707eb04
1 changed files with 1 additions and 1 deletions

View 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++;