[llvm] [ThinLTO] Populate declaration import status except for distributed ThinLTO (PR #88024)
Mingming Liu via llvm-commits
llvm-commits at lists.llvm.org
Fri May 10 17:10:12 PDT 2024
================
@@ -158,7 +158,7 @@ void llvm::computeLTOCacheKey(
std::vector<uint64_t> ExportsGUID;
ExportsGUID.reserve(ExportList.size());
- for (const auto &VI : ExportList) {
+ for (const auto &[VI, UnusedImportType] : ExportList) {
----------------
minglotus-6 wrote:
done for `ExportList` and `ImportList`.
https://github.com/llvm/llvm-project/pull/88024
More information about the llvm-commits
mailing list