summaryrefslogtreecommitdiff
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
commit92bd43bd4b2b358decc63462e98e856e9f9bfa90 (patch)
tree364596a3a7a0d1adf45c5cdb0aaf129c2d826797
parent800e6ee52fd32e0b129cbccd811166d7e215e6ad (diff)
downloadllvm-92bd43bd4b2b358decc63462e98e856e9f9bfa90.tar.gz
llvm-92bd43bd4b2b358decc63462e98e856e9f9bfa90.tar.bz2
llvm-92bd43bd4b2b358decc63462e98e856e9f9bfa90.tar.xz
Fix comment.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183052 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/Support/MD5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Support/MD5.cpp b/lib/Support/MD5.cpp
index ce99ab6abc..4c72cef60b 100644
--- a/lib/Support/MD5.cpp
+++ b/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;