diff options
author | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-21 23:27:54 +0000 |
---|---|---|
committer | Benjamin Kramer <benny.kra@googlemail.com> | 2009-10-21 23:27:54 +0000 |
commit | 22146fbc5f31892e2e72f696ef03c6d9ea68040b (patch) | |
tree | f0c1c40ee0f7501871477979d683c4ba69dfc567 /llvm/lib/VMCore/Metadata.cpp | |
parent | c02cfe2a55e138fe533f040229f863265f6de283 (diff) | |
download | bcm5719-llvm-22146fbc5f31892e2e72f696ef03c6d9ea68040b.tar.gz bcm5719-llvm-22146fbc5f31892e2e72f696ef03c6d9ea68040b.zip |
Remove pointless return; at end of function.
llvm-svn: 84794
Diffstat (limited to 'llvm/lib/VMCore/Metadata.cpp')
-rw-r--r-- | llvm/lib/VMCore/Metadata.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/llvm/lib/VMCore/Metadata.cpp b/llvm/lib/VMCore/Metadata.cpp index 422a21545ad..92e4910e422 100644 --- a/llvm/lib/VMCore/Metadata.cpp +++ b/llvm/lib/VMCore/Metadata.cpp @@ -307,7 +307,6 @@ void MetadataContext::addMD(unsigned MDKind, MDNode *Node, Instruction *Inst) { // Otherwise add a new entry. Info.push_back(std::make_pair(MDKind, Node)); - return; } /// removeMD - Remove metadata of given kind attached with an instuction. @@ -324,8 +323,6 @@ void MetadataContext::removeMD(unsigned Kind, Instruction *Inst) { return; } } - - return; } /// removeAllMetadata - Remove all metadata attached with an instruction. |