clang-format a few functions. NFC
[oota-llvm.git] / lib / IR / LLVMContext.cpp
index 44c45326c12ecf4d9185b6cc5af8c6fa515dbeee..e8bf442b3e1db59ced07f9dac8bc2e87b4caab0c 100644 (file)
@@ -240,15 +240,15 @@ void LLVMContext::emitError(unsigned LocCookie, const Twine &ErrorStr) {
 // Metadata Kind Uniquing
 //===----------------------------------------------------------------------===//
 
-/// getMDKindID - Return a unique non-zero ID for the specified metadata kind.
+/// Return a unique non-zero ID for the specified metadata kind.
 unsigned LLVMContext::getMDKindID(StringRef Name) const {
   assert(!std::isdigit(Name.front()) &&
          "Named metadata may not start with a digit");
 
   // If this is new, assign it its ID.
-  return pImpl->CustomMDKindNames.insert(std::make_pair(
-                                             Name,
-                                             pImpl->CustomMDKindNames.size()))
+  return pImpl->CustomMDKindNames.insert(
+                                     std::make_pair(
+                                         Name, pImpl->CustomMDKindNames.size()))
       .first->second;
 }