[llvm] r260221 - Fix comment for MD5Hash.

Teresa Johnson via llvm-commits llvm-commits at lists.llvm.org
Tue Feb 9 05:28:48 PST 2016


Author: tejohnson
Date: Tue Feb  9 07:28:44 2016
New Revision: 260221

URL: http://llvm.org/viewvc/llvm-project?rev=260221&view=rev
Log:
Fix comment for MD5Hash.

Modified:
    llvm/trunk/include/llvm/Support/MD5.h

Modified: llvm/trunk/include/llvm/Support/MD5.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Support/MD5.h?rev=260221&r1=260220&r2=260221&view=diff
==============================================================================
--- llvm/trunk/include/llvm/Support/MD5.h (original)
+++ llvm/trunk/include/llvm/Support/MD5.h Tue Feb  9 07:28:44 2016
@@ -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);




More information about the llvm-commits mailing list