[llvm] r183052 - Fix comment.
Eric Christopher
echristo at gmail.com
Fri May 31 15:34:49 PDT 2013
Author: echristo
Date: Fri May 31 17:34:48 2013
New Revision: 183052
URL: http://llvm.org/viewvc/llvm-project?rev=183052&view=rev
Log:
Fix comment.
Modified:
llvm/trunk/lib/Support/MD5.cpp
Modified: llvm/trunk/lib/Support/MD5.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Support/MD5.cpp?rev=183052&r1=183051&r2=183052&view=diff
==============================================================================
--- llvm/trunk/lib/Support/MD5.cpp (original)
+++ llvm/trunk/lib/Support/MD5.cpp Fri May 31 17:34:48 2013
@@ -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;
More information about the llvm-commits
mailing list