Skip to content

Commit 00d208e

Browse files
committedSep 1, 2016
remove normalize_infer_ctxt constructor
1 parent 7057c42 commit 00d208e

File tree

7 files changed

+7
-18
lines changed

7 files changed

+7
-18
lines changed
 

‎src/librustc/infer/mod.rs

-11
Original file line numberDiff line numberDiff line change
@@ -468,17 +468,6 @@ impl<'a, 'gcx, 'tcx> TyCtxt<'a, 'gcx, 'gcx> {
468468
}
469469
}
470470

471-
pub fn normalizing_infer_ctxt(self, projection_mode: Reveal)
472-
-> InferCtxtBuilder<'a, 'gcx, 'tcx> {
473-
InferCtxtBuilder {
474-
global_tcx: self,
475-
arenas: ty::CtxtArenas::new(),
476-
tables: None,
477-
param_env: None,
478-
projection_mode: projection_mode,
479-
}
480-
}
481-
482471
/// Fake InferCtxt with the global tcx. Used by pre-MIR borrowck
483472
/// for MemCategorizationContext/ExprUseVisitor.
484473
/// If any inference functionality is used, ICEs will occur.

‎src/librustc/traits/specialize/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ pub fn specializes<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
147147
.unwrap()
148148
.subst(tcx, &penv.free_substs);
149149

150-
let result = tcx.normalizing_infer_ctxt(Reveal::ExactMatch).enter(|mut infcx| {
150+
let result = tcx.infer_ctxt(None, None, Reveal::ExactMatch).enter(|mut infcx| {
151151
// Normalize the trait reference, adding any obligations
152152
// that arise into the impl1 assumptions.
153153
let Normalized { value: impl1_trait_ref, obligations: normalization_obligations } = {

‎src/librustc_lint/types.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -691,7 +691,7 @@ impl LateLintPass for VariantSizeDifferences {
691691
if let hir::ItemEnum(ref enum_definition, ref gens) = it.node {
692692
if gens.ty_params.is_empty() { // sizes only make sense for non-generic types
693693
let t = cx.tcx.node_id_to_type(it.id);
694-
let layout = cx.tcx.normalizing_infer_ctxt(Reveal::All).enter(|infcx| {
694+
let layout = cx.tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
695695
let ty = cx.tcx.erase_regions(&t);
696696
ty.layout(&infcx).unwrap_or_else(|e| {
697697
bug!("failed to get layout for `{}`: {}", t, e)

‎src/librustc_trans/common.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -955,7 +955,7 @@ pub fn fulfill_obligation<'a, 'tcx>(scx: &SharedCrateContext<'a, 'tcx>,
955955

956956
// Do the initial selection for the obligation. This yields the
957957
// shallow result we are looking for -- that is, what specific impl.
958-
tcx.normalizing_infer_ctxt(Reveal::All).enter(|infcx| {
958+
tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
959959
let mut selcx = SelectionContext::new(&infcx);
960960

961961
let obligation_cause = traits::ObligationCause::misc(span,
@@ -1014,7 +1014,7 @@ pub fn normalize_and_test_predicates<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
10141014
debug!("normalize_and_test_predicates(predicates={:?})",
10151015
predicates);
10161016

1017-
tcx.normalizing_infer_ctxt(Reveal::All).enter(|infcx| {
1017+
tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
10181018
let mut selcx = SelectionContext::new(&infcx);
10191019
let mut fulfill_cx = traits::FulfillmentContext::new();
10201020
let cause = traits::ObligationCause::dummy();

‎src/librustc_trans/context.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ impl<'b, 'tcx> CrateContext<'b, 'tcx> {
996996
}
997997

998998
pub fn layout_of(&self, ty: Ty<'tcx>) -> &'tcx ty::layout::Layout {
999-
self.tcx().normalizing_infer_ctxt(traits::Reveal::All).enter(|infcx| {
999+
self.tcx().infer_ctxt(None, None, traits::Reveal::All).enter(|infcx| {
10001000
ty.layout(&infcx).unwrap_or_else(|e| {
10011001
bug!("failed to get layout for `{}`: {}", ty, e);
10021002
})

‎src/librustc_trans/glue.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ pub fn get_drop_glue_type<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
113113
match t.sty {
114114
ty::TyBox(typ) if !type_needs_drop(tcx, typ)
115115
&& type_is_sized(tcx, typ) => {
116-
tcx.normalizing_infer_ctxt(traits::Reveal::All).enter(|infcx| {
116+
tcx.infer_ctxt(None, None, traits::Reveal::All).enter(|infcx| {
117117
let layout = t.layout(&infcx).unwrap();
118118
if layout.size(&tcx.data_layout).bytes() == 0 {
119119
// `Box<ZeroSizeType>` does not allocate.

‎src/librustc_trans/meth.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@ pub fn get_impl_method<'a, 'tcx>(tcx: TyCtxt<'a, 'tcx, 'tcx>,
314314

315315
match trait_def.ancestors(impl_def_id).fn_defs(tcx, name).next() {
316316
Some(node_item) => {
317-
let substs = tcx.normalizing_infer_ctxt(Reveal::All).enter(|infcx| {
317+
let substs = tcx.infer_ctxt(None, None, Reveal::All).enter(|infcx| {
318318
let substs = substs.rebase_onto(tcx, trait_def_id, impl_substs);
319319
let substs = traits::translate_substs(&infcx, impl_def_id,
320320
substs, node_item.node);

0 commit comments

Comments
 (0)