fix comment

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34395 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Chris Lattner 2007-02-18 22:10:58 +00:00
parent eb47391994
commit 4a6f363491

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