[llvm-commits] CVS: llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
Chris Lattner
sabre at nondot.org
Sun Feb 18 14:11:15 PST 2007
Changes in directory llvm/lib/Transforms/IPO:
StripDeadPrototypes.cpp updated: 1.4 -> 1.5
---
Log message:
fix comment
---
Diffs of the changes: (+1 -1)
StripDeadPrototypes.cpp | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp
diff -u llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp:1.4 llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp:1.5
--- llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp:1.4 Sun Feb 18 16:10:34 2007
+++ llvm/lib/Transforms/IPO/StripDeadPrototypes.cpp Sun Feb 18 16:10:58 2007
@@ -49,7 +49,7 @@
}
}
- // 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++;
More information about the llvm-commits
mailing list