[llvm] [ThinLTO] Populate declaration import status except for distributed ThinLTO under a default-off new option (PR #88024)
Jan Voung via llvm-commits
llvm-commits at lists.llvm.org
Wed May 15 07:57:26 PDT 2024
================
@@ -121,6 +121,9 @@ void llvm::computeLTOCacheKey(
support::endian::write64le(Data, I);
Hasher.update(Data);
};
+ auto AddUint8 = [&](const uint8_t &I) {
----------------
jvoung wrote:
nit: could pass by value, since uint8_t is small (similar to AddUnsigned)?
https://github.com/llvm/llvm-project/pull/88024
More information about the llvm-commits
mailing list