[llvm-commits] [llvm] r161826 - /llvm/trunk/lib/VMCore/Metadata.cpp
Eric Christopher
echristo at apple.com
Mon Aug 13 18:09:10 PDT 2012
Author: echristo
Date: Mon Aug 13 20:09:10 2012
New Revision: 161826
URL: http://llvm.org/viewvc/llvm-project?rev=161826&view=rev
Log:
Typo.
Modified:
llvm/trunk/lib/VMCore/Metadata.cpp
Modified: llvm/trunk/lib/VMCore/Metadata.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/VMCore/Metadata.cpp?rev=161826&r1=161825&r2=161826&view=diff
==============================================================================
--- llvm/trunk/lib/VMCore/Metadata.cpp (original)
+++ llvm/trunk/lib/VMCore/Metadata.cpp Mon Aug 13 20:09:10 2012
@@ -200,7 +200,7 @@
// 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);
}
More information about the llvm-commits
mailing list