We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 913c0bc commit 6b3a061Copy full SHA for 6b3a061
src/driver/jit.rs
@@ -185,7 +185,7 @@ fn load_imported_symbols_for_jit(tcx: TyCtxt<'_>) -> Vec<(String, *const u8)> {
185
.find(|(crate_type, _data)| *crate_type == rustc_session::config::CrateType::Executable)
186
.unwrap()
187
.1;
188
- for &(cnum, _) in &crate_info.used_crates_dynamic {
+ for &cnum in &crate_info.used_crates {
189
let src = &crate_info.used_crate_source[&cnum];
190
match data[cnum.as_usize() - 1] {
191
Linkage::NotLinked | Linkage::IncludedFromDylib => {}
0 commit comments