aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/MD5.cpp
diff options
context:
space:
mode:
authorEric Christopher <echristo@gmail.com>2013-05-31 22:34:48 +0000
committerEric Christopher <echristo@gmail.com>2013-05-31 22:34:48 +0000
commitd0910436e7f4c84e0442092492d11e19f456ff07 (patch)
treea4d71668fc66d7a2496b6f0f8d42677f3b690ca0 /llvm/lib/Support/MD5.cpp
parent606ecda4a1127189052e69b70b6d08c401b7cae0 (diff)
downloadllvm-d0910436e7f4c84e0442092492d11e19f456ff07.zip
llvm-d0910436e7f4c84e0442092492d11e19f456ff07.tar.gz
llvm-d0910436e7f4c84e0442092492d11e19f456ff07.tar.bz2
Fix comment.
llvm-svn: 183052
Diffstat (limited to 'llvm/lib/Support/MD5.cpp')
-rw-r--r--llvm/lib/Support/MD5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/lib/Support/MD5.cpp b/llvm/lib/Support/MD5.cpp
index ce99ab6..4c72cef 100644
--- a/llvm/lib/Support/MD5.cpp
+++ b/llvm/lib/Support/MD5.cpp
@@ -183,7 +183,7 @@ MD5::MD5()
: a(0x67452301), b(0xefcdab89), c(0x98badcfe), d(0x10325476), hi(0), lo(0) {
}
-/// Incrementally add \p size of \p data to the hash.
+/// Incrementally add the bytes in Data to the hash.
void MD5::update(ArrayRef<uint8_t> Data) {
MD5_u32plus saved_lo;
unsigned long used, free;