From: Eric Christopher Date: Fri, 31 May 2013 22:34:48 +0000 (+0000) Subject: Fix comment. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=92bd43bd4b2b358decc63462e98e856e9f9bfa90;p=oota-llvm.git Fix comment. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183052 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/MD5.cpp b/lib/Support/MD5.cpp index ce99ab6abc8..4c72cef60b0 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 Data) { MD5_u32plus saved_lo; unsigned long used, free;