@@ -1205,7 +1205,11 @@ struct LLVMRustThinLTOData {
1205
1205
// Not 100% sure what these are, but they impact what's internalized and
1206
1206
// what's inlined across modules, I believe.
1207
1207
#if LLVM_VERSION_GE(18, 0)
1208
+ #if LLVM_VERSION_GE(20, 0)
1209
+ FunctionImporter::ImportListsTy ImportLists;
1210
+ #else
1208
1211
DenseMap<StringRef, FunctionImporter::ImportMapTy> ImportLists;
1212
+ #endif
1209
1213
DenseMap<StringRef, FunctionImporter::ExportSetTy> ExportLists;
1210
1214
DenseMap<StringRef, GVSummaryMapTy> ModuleToDefinedGVSummaries;
1211
1215
#else
@@ -1414,13 +1418,13 @@ LLVMRustPrepareThinLTOInternalize(const LLVMRustThinLTOData *Data,
1414
1418
return true ;
1415
1419
}
1416
1420
1417
- extern " C" bool LLVMRustPrepareThinLTOImport (const LLVMRustThinLTOData *Data,
1421
+ extern " C" bool LLVMRustPrepareThinLTOImport (LLVMRustThinLTOData *Data,
1418
1422
LLVMModuleRef M,
1419
1423
LLVMTargetMachineRef TM) {
1420
1424
Module &Mod = *unwrap (M);
1421
1425
TargetMachine &Target = *unwrap (TM);
1422
1426
1423
- const auto &ImportList = Data->ImportLists . lookup ( Mod.getModuleIdentifier ()) ;
1427
+ const auto &ImportList = Data->ImportLists [ Mod.getModuleIdentifier ()] ;
1424
1428
auto Loader = [&](StringRef Identifier) {
1425
1429
const auto &Memory = Data->ModuleMap .lookup (Identifier);
1426
1430
auto &Context = Mod.getContext ();
@@ -1603,7 +1607,7 @@ extern "C" void LLVMRustComputeLTOCacheKey(RustStringRef KeyOut,
1603
1607
LLVMRustThinLTOData *Data) {
1604
1608
SmallString<40 > Key;
1605
1609
llvm::lto::Config conf;
1606
- const auto &ImportList = Data->ImportLists . lookup ( ModId) ;
1610
+ const auto &ImportList = Data->ImportLists [ ModId] ;
1607
1611
const auto &ExportList = Data->ExportLists .lookup (ModId);
1608
1612
const auto &ResolvedODR = Data->ResolvedODR .lookup (ModId);
1609
1613
const auto &DefinedGlobals = Data->ModuleToDefinedGVSummaries .lookup (ModId);
0 commit comments