Remove pointless return; at end of function.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@84794 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/VMCore/Metadata.cpp b/lib/VMCore/Metadata.cpp
index 422a215..92e4910 100644
--- a/lib/VMCore/Metadata.cpp
+++ b/lib/VMCore/Metadata.cpp
@@ -307,7 +307,6 @@
 
   // 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 @@
       return;
     }
   }
-
-  return;
 }
   
 /// removeAllMetadata - Remove all metadata attached with an instruction.