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 | 97f6ea9f346898a2f75e92abf6b1444ff7e5cffa (patch) | |
| tree | d21934279586432200f8ca0b613461a41a925f43 /llvm/lib/VMCore/Metadata.cpp | |
| parent | 245920463d94c6c5869ae4b6acd0a33d34a27088 (diff) | |
| download | bcm5719-llvm-97f6ea9f346898a2f75e92abf6b1444ff7e5cffa.tar.gz bcm5719-llvm-97f6ea9f346898a2f75e92abf6b1444ff7e5cffa.zip | |
Typo.
llvm-svn: 161826
Diffstat (limited to 'llvm/lib/VMCore/Metadata.cpp')
| -rw-r--r-- | llvm/lib/VMCore/Metadata.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/llvm/lib/VMCore/Metadata.cpp b/llvm/lib/VMCore/Metadata.cpp index ede4626b921..95e5a8b2f96 100644 --- a/llvm/lib/VMCore/Metadata.cpp +++ b/llvm/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);  } | 

