summaryrefslogtreecommitdiff
path: root/lib/VMCore/Metadata.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@apple.com>2012-08-14 01:09:10 +0000
committerEric Christopher <echristo@apple.com>2012-08-14 01:09:10 +0000
commita61d3a98c47b009274530830b2489d49ce215dbb (patch)
treedd9d86a4f5753bff889ebd2a55c8770ed2c71166 /lib/VMCore/Metadata.cpp
parent12512631440ffe5f01a44fc2db0b2edaaa582914 (diff)
downloadllvm-a61d3a98c47b009274530830b2489d49ce215dbb.tar.gz
llvm-a61d3a98c47b009274530830b2489d49ce215dbb.tar.bz2
llvm-a61d3a98c47b009274530830b2489d49ce215dbb.tar.xz
Typo.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161826 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/VMCore/Metadata.cpp')
-rw-r--r--lib/VMCore/Metadata.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/VMCore/Metadata.cpp b/lib/VMCore/Metadata.cpp
index ede4626b92..95e5a8b2f9 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);
}