summaryrefslogtreecommitdiff
path: root/lib/Transforms/IPO/StripDeadPrototypes.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-02-18 22:10:58 +0000
committerChris Lattner <sabre@nondot.org>2007-02-18 22:10:58 +0000
commit4a6f363491c37e0a31f462e72d640d9d4c63177e (patch)
tree8816e08ee3ec73e9c7e8efdcb5b5b3c5f9bbe75d /lib/Transforms/IPO/StripDeadPrototypes.cpp
parenteb47391994497060793d8f91d1c0a94e39538c6d (diff)
downloadllvm-4a6f363491c37e0a31f462e72d640d9d4c63177e.tar.gz
llvm-4a6f363491c37e0a31f462e72d640d9d4c63177e.tar.bz2
llvm-4a6f363491c37e0a31f462e72d640d9d4c63177e.tar.xz
fix comment
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@34395 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Transforms/IPO/StripDeadPrototypes.cpp')
-rw-r--r--lib/Transforms/IPO/StripDeadPrototypes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Transforms/IPO/StripDeadPrototypes.cpp b/lib/Transforms/IPO/StripDeadPrototypes.cpp
index d433064277..7d03ae68ab 100644
--- a/lib/Transforms/IPO/StripDeadPrototypes.cpp
+++ b/lib/Transforms/IPO/StripDeadPrototypes.cpp
@@ -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++;