diff options
author | Zachary Turner <zturner@google.com> | 2017-03-20 23:33:18 +0000 |
---|---|---|
committer | Zachary Turner <zturner@google.com> | 2017-03-20 23:33:18 +0000 |
commit | 82a0c97b32c2d581a239308a699f265f144e975b (patch) | |
tree | 0a10ad6e79b5e43a0ad7f44c0bdec40493d56aaf /clang/lib/CodeGen/CodeGenPGO.cpp | |
parent | ba789cbd3da2fac7d46a39f8cef06d0ea51c5049 (diff) | |
download | bcm5719-llvm-82a0c97b32c2d581a239308a699f265f144e975b.tar.gz bcm5719-llvm-82a0c97b32c2d581a239308a699f265f144e975b.zip |
Add a function to MD5 a file's contents.
In doing so, clean up the MD5 interface a little. Most
existing users only care about the lower 8 bytes of an MD5,
but for some users that care about the upper and lower,
there wasn't a good interface. Furthermore, consumers
of the MD5 checksum were required to handle endianness
details on their own, so it seems reasonable to abstract
this into a nicer interface that just gives you the right
value.
Differential Revision: https://reviews.llvm.org/D31105
llvm-svn: 298322
Diffstat (limited to 'clang/lib/CodeGen/CodeGenPGO.cpp')
-rw-r--r-- | clang/lib/CodeGen/CodeGenPGO.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clang/lib/CodeGen/CodeGenPGO.cpp b/clang/lib/CodeGen/CodeGenPGO.cpp index 90711b54794..6acedc033a6 100644 --- a/clang/lib/CodeGen/CodeGenPGO.cpp +++ b/clang/lib/CodeGen/CodeGenPGO.cpp @@ -612,7 +612,7 @@ uint64_t PGOHash::finalize() { llvm::MD5::MD5Result Result; MD5.final(Result); using namespace llvm::support; - return endian::read<uint64_t, little, unaligned>(Result); + return Result.low(); } void CodeGenPGO::assignRegionCounters(GlobalDecl GD, llvm::Function *Fn) { |