diff options
| author | bors <bors@rust-lang.org> | 2024-03-19 13:10:01 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-03-19 13:10:01 +0000 |
| commit | 200e3f7995e231535fdea3be9cb9a3f098b4c856 (patch) | |
| tree | 2be50f3e9da214446715dad1446ebb2c24b23c55 /compiler/rustc_codegen_ssa/src/back | |
| parent | f296c162d8c6f84bcfee99c152d4fd63aaef3e38 (diff) | |
| parent | a8f71cf2893e03ec0ef7663f680f5d816e80f801 (diff) | |
| download | rust-200e3f7995e231535fdea3be9cb9a3f098b4c856.tar.gz rust-200e3f7995e231535fdea3be9cb9a3f098b4c856.zip | |
Auto merge of #122037 - oli-obk:more_new_intrinsics, r=Nilstrieb
Move more intrinsics to rustc_intrinsic cc https://github.com/rust-lang/rust/issues/63585
Diffstat (limited to 'compiler/rustc_codegen_ssa/src/back')
| -rw-r--r-- | compiler/rustc_codegen_ssa/src/back/symbol_export.rs | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs index 87b6f0e914c..b19f52182b6 100644 --- a/compiler/rustc_codegen_ssa/src/back/symbol_export.rs +++ b/compiler/rustc_codegen_ssa/src/back/symbol_export.rs @@ -81,10 +81,6 @@ fn reachable_non_generics_provider(tcx: TyCtxt<'_>, _: LocalCrate) -> DefIdMap<S return library.kind.is_statically_included().then_some(def_id); } - if tcx.intrinsic(def_id).is_some_and(|i| i.must_be_overridden) { - return None; - } - // Only consider nodes that actually have exported symbols. match tcx.def_kind(def_id) { DefKind::Fn | DefKind::Static { .. } => {} |
