Typo.
authorEric Christopher <echristo@apple.com>
Tue, 14 Aug 2012 01:09:10 +0000 (01:09 +0000)
committerEric Christopher <echristo@apple.com>
Tue, 14 Aug 2012 01:09:10 +0000 (01:09 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@161826 91177308-0d34-0410-b5e6-96231b3b80d8

lib/VMCore/Metadata.cpp

index ede4626b9217258a5733a645a865527a964efac7..95e5a8b2f96980d16aed12f6435bd538007a004e 100644 (file)
@@ -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);
 }