From 060498bcce3f12564f5b7ff5de6a7f7d85c9b465 Mon Sep 17 00:00:00 2001 From: Teresa Johnson Date: Tue, 9 Feb 2016 13:28:44 +0000 Subject: [PATCH] Fix comment for MD5Hash. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@260221 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/MD5.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/llvm/Support/MD5.h b/include/llvm/Support/MD5.h index 0ce0b438fe4..18eef43e315 100644 --- a/include/llvm/Support/MD5.h +++ b/include/llvm/Support/MD5.h @@ -66,7 +66,7 @@ private: const uint8_t *body(ArrayRef 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); -- 2.11.0