1
0
mirror of https://github.com/RPCS3/llvm-mirror.git synced 2024-11-24 03:33:20 +01:00

fix comment

llvm-svn: 34395
This commit is contained in:
Chris Lattner 2007-02-18 22:10:58 +00:00
parent d085064847
commit 69435023b2

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