diff options
author | Eric Christopher <echristo@apple.com> | 2012-08-14 01:09:10 +0000 |
---|---|---|
committer | Eric Christopher <echristo@apple.com> | 2012-08-14 01:09:10 +0000 |
commit | a61d3a98c47b009274530830b2489d49ce215dbb (patch) | |
tree | dd9d86a4f5753bff889ebd2a55c8770ed2c71166 /lib/VMCore | |
parent | 12512631440ffe5f01a44fc2db0b2edaaa582914 (diff) | |
download | external_llvm-a61d3a98c47b009274530830b2489d49ce215dbb.zip external_llvm-a61d3a98c47b009274530830b2489d49ce215dbb.tar.gz external_llvm-a61d3a98c47b009274530830b2489d49ce215dbb.tar.bz2 |
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161826 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore')
-rw-r--r-- | lib/VMCore/Metadata.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Metadata.cpp b/lib/VMCore/Metadata.cpp index ede4626..95e5a8b 100644 --- a/lib/VMCore/Metadata.cpp +++ b/lib/VMCore/Metadata.cpp @@ -200,7 +200,7 @@ const Function *MDNode::getFunction() const { // destroy - Delete this node. Only when there are no uses. void MDNode::destroy() { setValueSubclassData(getSubclassDataFromValue() | DestroyFlag); - // Placement delete, the free the memory. + // Placement delete, then free the memory. this->~MDNode(); free(this); } |