Fix comment for MD5Hash.
authorTeresa Johnson <tejohnson@google.com>
Tue, 9 Feb 2016 13:28:44 +0000 (13:28 +0000)
committerTeresa Johnson <tejohnson@google.com>
Tue, 9 Feb 2016 13:28:44 +0000 (13:28 +0000)
llvm-svn: 260221

llvm/include/llvm/Support/MD5.h

index 0ce0b43..18eef43 100644 (file)
@@ -66,7 +66,7 @@ private:
   const uint8_t *body(ArrayRef<uint8_t> Data);
 };
 
-/// Helper to compute and return a 64-bit MD5 Hash of a given string.
+/// Helper to compute and return lower 64 bits of the given string's MD5 hash.
 inline uint64_t MD5Hash(StringRef Str) {
   MD5 Hash;
   Hash.update(Str);