diff options
Diffstat (limited to 'llvm/lib/LTO/LTO.cpp')
-rw-r--r-- | llvm/lib/LTO/LTO.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/LTO/LTO.cpp b/llvm/lib/LTO/LTO.cpp index 53060df..21cad1d 100644 --- a/llvm/lib/LTO/LTO.cpp +++ b/llvm/lib/LTO/LTO.cpp @@ -114,12 +114,12 @@ void llvm::computeLTOCacheKey( auto AddUnsigned = [&](unsigned I) { uint8_t Data[4]; support::endian::write32le(Data, I); - Hasher.update(ArrayRef<uint8_t>{Data, 4}); + Hasher.update(Data); }; auto AddUint64 = [&](uint64_t I) { uint8_t Data[8]; support::endian::write64le(Data, I); - Hasher.update(ArrayRef<uint8_t>{Data, 8}); + Hasher.update(Data); }; AddString(Conf.CPU); // FIXME: Hash more of Options. For now all clients initialize Options from |