Skip to content

Commit 5f1e36f

Browse files
Stop using Interner in the compiler randomly
1 parent 14804d1 commit 5f1e36f

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

compiler/rustc_monomorphize/src/collector.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ use rustc_middle::ty::adjustment::{CustomCoerceUnsized, PointerCoercion};
225225
use rustc_middle::ty::layout::ValidityRequirement;
226226
use rustc_middle::ty::print::{shrunk_instance_name, with_no_trimmed_paths};
227227
use rustc_middle::ty::{
228-
self, GenericArgs, GenericParamDefKind, Instance, InstanceKind, Interner, Ty, TyCtxt,
229-
TypeFoldable, TypeVisitableExt, VtblEntry,
228+
self, GenericArgs, GenericParamDefKind, Instance, InstanceKind, Ty, TyCtxt, TypeFoldable,
229+
TypeVisitableExt, VtblEntry,
230230
};
231231
use rustc_middle::util::Providers;
232232
use rustc_middle::{bug, span_bug};
@@ -967,7 +967,7 @@ fn should_codegen_locally<'tcx>(tcx: TyCtxt<'tcx>, instance: Instance<'tcx>) ->
967967
{
968968
// `#[rustc_force_inline]` items should never be codegened. This should be caught by
969969
// the MIR validator.
970-
tcx.delay_bug("attempt to codegen `#[rustc_force_inline]` item");
970+
tcx.dcx().delayed_bug("attempt to codegen `#[rustc_force_inline]` item");
971971
}
972972

973973
if def_id.is_local() {

compiler/rustc_trait_selection/src/traits/select/candidate_assembly.rs

+4-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use rustc_infer::traits::{Obligation, PolyTraitObligation, SelectionError};
1616
use rustc_middle::ty::fast_reject::DeepRejectCtxt;
1717
use rustc_middle::ty::{self, Ty, TypeVisitableExt, TypingMode};
1818
use rustc_middle::{bug, span_bug};
19-
use rustc_type_ir::{Interner, elaborate};
19+
use rustc_type_ir::elaborate;
2020
use tracing::{debug, instrument, trace};
2121

2222
use super::SelectionCandidate::*;
@@ -802,7 +802,9 @@ impl<'cx, 'tcx> SelectionContext<'cx, 'tcx> {
802802
| ty::UnsafeBinder(_) => {
803803
// Only consider auto impls of unsafe traits when there are
804804
// no unsafe fields.
805-
if self.tcx().trait_is_unsafe(def_id) && self_ty.has_unsafe_fields() {
805+
if self.tcx().trait_def(def_id).safety.is_unsafe()
806+
&& self_ty.has_unsafe_fields()
807+
{
806808
return;
807809
}
808810

0 commit comments

Comments
 (0)