Skip to content

Commit 6fdf637

Browse files
committed
Fixed #48425
1 parent 9ff5cb5 commit 6fdf637

File tree

7 files changed

+11
-11
lines changed

7 files changed

+11
-11
lines changed

src/librustc/ty/layout.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1203,7 +1203,7 @@ impl<'a, 'tcx> LayoutCx<'tcx, TyCtxt<'a, 'tcx, 'tcx>> {
12031203
}
12041204

12051205
let pointee = tcx.normalize_associated_type_in_env(&pointee, param_env);
1206-
if pointee.is_sized(tcx, param_env, DUMMY_SP) {
1206+
if pointee.is_sized(tcx.at(DUMMY_SP), param_env) {
12071207
return Ok(tcx.intern_layout(LayoutDetails::scalar(self, data_ptr)));
12081208
}
12091209

@@ -1428,7 +1428,7 @@ impl<'a, 'tcx> LayoutCx<'tcx, TyCtxt<'a, 'tcx, 'tcx>> {
14281428
let param_env = tcx.param_env(def.did);
14291429
let last_field = def.variants[v].fields.last().unwrap();
14301430
let always_sized = tcx.type_of(last_field.did)
1431-
.is_sized(tcx, param_env, DUMMY_SP);
1431+
.is_sized(tcx.at(DUMMY_SP), param_env);
14321432
if !always_sized { StructKind::MaybeUnsized }
14331433
else { StructKind::AlwaysSized }
14341434
};

src/librustc/ty/util.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ use traits::{self, Reveal};
2020
use ty::{self, Ty, TyCtxt, TypeFoldable};
2121
use ty::fold::TypeVisitor;
2222
use ty::subst::{Subst, UnpackedKind};
23+
use ty::maps::TyCtxtAt;
2324
use ty::TypeVariants::*;
2425
use util::common::ErrorReported;
2526
use middle::lang_items;
@@ -864,11 +865,10 @@ impl<'a, 'tcx> ty::TyS<'tcx> {
864865
}
865866

866867
pub fn is_sized(&'tcx self,
867-
tcx: TyCtxt<'a, 'tcx, 'tcx>,
868-
param_env: ty::ParamEnv<'tcx>,
869-
span: Span)-> bool
868+
tcx_at: TyCtxtAt<'a, 'tcx, 'tcx>,
869+
param_env: ty::ParamEnv<'tcx>)-> bool
870870
{
871-
tcx.at(span).is_sized_raw(param_env.and(self))
871+
tcx_at.is_sized_raw(param_env.and(self))
872872
}
873873

874874
pub fn is_freeze(&'tcx self,

src/librustc_mir/borrow_check/nll/type_check/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1208,7 +1208,7 @@ impl<'a, 'gcx, 'tcx> TypeChecker<'a, 'gcx, 'tcx> {
12081208
// shouldn't affect `is_sized`.
12091209
let gcx = self.tcx().global_tcx();
12101210
let erased_ty = gcx.lift(&self.tcx().erase_regions(&ty)).unwrap();
1211-
if !erased_ty.is_sized(gcx, self.param_env, span) {
1211+
if !erased_ty.is_sized(gcx.at(span), self.param_env) {
12121212
// in current MIR construction, all non-control-flow rvalue
12131213
// expressions evaluate through `as_temp` or `into` a return
12141214
// slot or local, so to find all unsized rvalues it is enough

src/librustc_mir/interpret/eval_context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ impl<'a, 'tcx, M: Machine<'tcx>> EvalContext<'a, 'tcx, M> {
286286
}
287287

288288
pub(super) fn type_is_sized(&self, ty: Ty<'tcx>) -> bool {
289-
ty.is_sized(self.tcx, self.param_env, DUMMY_SP)
289+
ty.is_sized(self.tcx.at(DUMMY_SP), self.param_env)
290290
}
291291

292292
pub fn load_mir(

src/librustc_mir/monomorphize/collector.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -796,7 +796,7 @@ fn find_vtable_types_for_unsizing<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
796796
let ptr_vtable = |inner_source: Ty<'tcx>, inner_target: Ty<'tcx>| {
797797
let type_has_metadata = |ty: Ty<'tcx>| -> bool {
798798
use syntax_pos::DUMMY_SP;
799-
if ty.is_sized(tcx, ty::ParamEnv::empty(traits::Reveal::All), DUMMY_SP) {
799+
if ty.is_sized(tcx.at(DUMMY_SP), ty::ParamEnv::empty(traits::Reveal::All)) {
800800
return false;
801801
}
802802
let tail = tcx.struct_tail(ty);

src/librustc_trans/common.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ pub fn type_needs_drop<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, ty: Ty<'tcx>) -> b
4444
}
4545

4646
pub fn type_is_sized<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, ty: Ty<'tcx>) -> bool {
47-
ty.is_sized(tcx, ty::ParamEnv::empty(traits::Reveal::All), DUMMY_SP)
47+
ty.is_sized(tcx.at(DUMMY_SP), ty::ParamEnv::empty(traits::Reveal::All))
4848
}
4949

5050
pub fn type_is_freeze<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>, ty: Ty<'tcx>) -> bool {

src/librustc_trans/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ impl<'b, 'tcx> CodegenCx<'b, 'tcx> {
435435

436436
pub fn type_has_metadata(&self, ty: Ty<'tcx>) -> bool {
437437
use syntax_pos::DUMMY_SP;
438-
if ty.is_sized(self.tcx, ty::ParamEnv::empty(traits::Reveal::All), DUMMY_SP) {
438+
if ty.is_sized(self.tcx.at(DUMMY_SP), ty::ParamEnv::empty(traits::Reveal::All)) {
439439
return false;
440440
}
441441

0 commit comments

Comments
 (0)