aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Bitcode/Writer/BitcodeWriter.cpp
diff options
context:
space:
mode:
authorVictor Hernandez <vhernandez@apple.com>2010-01-13 21:25:04 +0000
committerVictor Hernandez <vhernandez@apple.com>2010-01-13 21:25:04 +0000
commit8ea961ff7f36d73e6c14a086e8be912cadd35498 (patch)
treefedabdd533c23d089695313eb63e27ca6c0dd293 /lib/Bitcode/Writer/BitcodeWriter.cpp
parent74165da5442bd6bb1a8f2ca59a7ef24b5c8a2ad4 (diff)
downloadexternal_llvm-8ea961ff7f36d73e6c14a086e8be912cadd35498.zip
external_llvm-8ea961ff7f36d73e6c14a086e8be912cadd35498.tar.gz
external_llvm-8ea961ff7f36d73e6c14a086e8be912cadd35498.tar.bz2
Fix comment typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@93355 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bitcode/Writer/BitcodeWriter.cpp')
-rw-r--r--lib/Bitcode/Writer/BitcodeWriter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Bitcode/Writer/BitcodeWriter.cpp b/lib/Bitcode/Writer/BitcodeWriter.cpp
index a81b346..5318b51 100644
--- a/lib/Bitcode/Writer/BitcodeWriter.cpp
+++ b/lib/Bitcode/Writer/BitcodeWriter.cpp
@@ -570,7 +570,7 @@ static void WriteFunctionLocalMetadata(const ValueEnumerator &VE,
StartedMetadataBlock = true;
}
WriteMDNode(N, VE, Stream, Record);
- // Remove function-local MD, since it is used outside of function.
+ // Remove function-local MD, since it is not used outside of function.
it = Vals.erase(it);
end = Vals.end();
continue;