Skip to content

Commit 8479945

Browse files
committed
NFC don't convert types to identical types
1 parent a96d57b commit 8479945

File tree

24 files changed

+35
-50
lines changed

24 files changed

+35
-50
lines changed

compiler/rustc_ast_lowering/src/expr.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1260,9 +1260,7 @@ impl<'hir> LoweringContext<'_, 'hir> {
12601260
);
12611261

12621262
// `a = lhs1; b = lhs2;`.
1263-
let stmts = self
1264-
.arena
1265-
.alloc_from_iter(std::iter::once(destructure_let).chain(assignments.into_iter()));
1263+
let stmts = self.arena.alloc_from_iter(std::iter::once(destructure_let).chain(assignments));
12661264

12671265
// Wrap everything in a block.
12681266
hir::ExprKind::Block(self.block_all(whole_span, stmts, None), None)

compiler/rustc_codegen_llvm/src/debuginfo/metadata.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -607,7 +607,7 @@ pub fn file_metadata<'ll>(cx: &CodegenCx<'ll, '_>, source_file: &SourceFile) ->
607607

608608
if let Ok(rel_path) = abs_path.strip_prefix(working_directory) {
609609
(
610-
working_directory.to_string_lossy().into(),
610+
working_directory.to_string_lossy(),
611611
rel_path.to_string_lossy().into_owned(),
612612
)
613613
} else {

compiler/rustc_codegen_llvm/src/debuginfo/metadata/enums/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -396,7 +396,7 @@ pub fn build_coroutine_variant_struct_type_di_node<'ll, 'tcx>(
396396
})
397397
.collect();
398398

399-
state_specific_fields.into_iter().chain(common_fields.into_iter()).collect()
399+
state_specific_fields.into_iter().chain(common_fields).collect()
400400
},
401401
|cx| build_generic_type_param_di_nodes(cx, coroutine_type_and_layout.ty),
402402
)

compiler/rustc_data_structures/src/sorted_map.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ impl<K: Ord, V> SortedMap<K, V> {
198198
if index == self.data.len() || elements.last().unwrap().0 < self.data[index].0 {
199199
// We can copy the whole range without having to mix with
200200
// existing elements.
201-
self.data.splice(index..index, elements.into_iter());
201+
self.data.splice(index..index, elements);
202202
return;
203203
}
204204

compiler/rustc_hir/src/hir.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -1560,7 +1560,7 @@ impl Expr<'_> {
15601560
ExprKind::Call(..) => ExprPrecedence::Call,
15611561
ExprKind::MethodCall(..) => ExprPrecedence::MethodCall,
15621562
ExprKind::Tup(_) => ExprPrecedence::Tup,
1563-
ExprKind::Binary(op, ..) => ExprPrecedence::Binary(op.node.into()),
1563+
ExprKind::Binary(op, ..) => ExprPrecedence::Binary(op.node),
15641564
ExprKind::Unary(..) => ExprPrecedence::Unary,
15651565
ExprKind::Lit(_) => ExprPrecedence::Lit,
15661566
ExprKind::Type(..) | ExprKind::Cast(..) => ExprPrecedence::Cast,
@@ -1700,11 +1700,9 @@ impl Expr<'_> {
17001700
// them being used only for its side-effects.
17011701
base.can_have_side_effects()
17021702
}
1703-
ExprKind::Struct(_, fields, init) => fields
1704-
.iter()
1705-
.map(|field| field.expr)
1706-
.chain(init.into_iter())
1707-
.any(|e| e.can_have_side_effects()),
1703+
ExprKind::Struct(_, fields, init) => {
1704+
fields.iter().map(|field| field.expr).chain(init).any(|e| e.can_have_side_effects())
1705+
}
17081706

17091707
ExprKind::Array(args)
17101708
| ExprKind::Tup(args)

compiler/rustc_hir_analysis/src/collect/resolve_bound_vars.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ impl<'a, 'tcx> BoundVarContext<'a, 'tcx> {
350350
// Nested poly trait refs have the binders concatenated
351351
let mut full_binders =
352352
self.map.late_bound_vars.entry(*hir_id).or_default().clone();
353-
full_binders.extend(supertrait_bound_vars.into_iter());
353+
full_binders.extend(supertrait_bound_vars);
354354
break (full_binders, BinderScopeType::Concatenating);
355355
}
356356
}

compiler/rustc_hir_typeck/src/errors.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -573,13 +573,13 @@ impl rustc_errors::AddToDiagnostic for CastUnknownPointerSub {
573573
{
574574
match self {
575575
CastUnknownPointerSub::To(span) => {
576-
let msg = f(diag, crate::fluent_generated::hir_typeck_label_to.into());
576+
let msg = f(diag, crate::fluent_generated::hir_typeck_label_to);
577577
diag.span_label(span, msg);
578-
let msg = f(diag, crate::fluent_generated::hir_typeck_note.into());
578+
let msg = f(diag, crate::fluent_generated::hir_typeck_note);
579579
diag.note(msg);
580580
}
581581
CastUnknownPointerSub::From(span) => {
582-
let msg = f(diag, crate::fluent_generated::hir_typeck_label_from.into());
582+
let msg = f(diag, crate::fluent_generated::hir_typeck_label_from);
583583
diag.span_label(span, msg);
584584
}
585585
}

compiler/rustc_hir_typeck/src/method/probe.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1548,9 +1548,9 @@ impl<'a, 'tcx> ProbeContext<'a, 'tcx> {
15481548
);
15491549

15501550
let candidate_obligations = impl_obligations
1551-
.chain(norm_obligations.into_iter())
1551+
.chain(norm_obligations)
15521552
.chain(ref_obligations.iter().cloned())
1553-
.chain(normalization_obligations.into_iter());
1553+
.chain(normalization_obligations);
15541554

15551555
// Evaluate those obligations to see if they might possibly hold.
15561556
for o in candidate_obligations {

compiler/rustc_infer/src/infer/outlives/verify.rs

+1-6
Original file line numberDiff line numberDiff line change
@@ -130,12 +130,7 @@ impl<'cx, 'tcx> VerifyBoundCx<'cx, 'tcx> {
130130
// see the extensive comment in projection_must_outlive
131131
let recursive_bound = {
132132
let mut components = smallvec![];
133-
compute_alias_components_recursive(
134-
self.tcx,
135-
alias_ty_as_ty.into(),
136-
&mut components,
137-
visited,
138-
);
133+
compute_alias_components_recursive(self.tcx, alias_ty_as_ty, &mut components, visited);
139134
self.bound_from_components(&components, visited)
140135
};
141136

compiler/rustc_infer/src/infer/relate/combine.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ impl<'infcx, 'tcx> CombineFields<'infcx, 'tcx> {
552552
}
553553

554554
pub fn register_obligations(&mut self, obligations: PredicateObligations<'tcx>) {
555-
self.obligations.extend(obligations.into_iter());
555+
self.obligations.extend(obligations);
556556
}
557557

558558
pub fn register_predicates(&mut self, obligations: impl IntoIterator<Item: ToPredicate<'tcx>>) {

compiler/rustc_mir_dataflow/src/value_analysis.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -956,11 +956,7 @@ impl Map {
956956
// The local is not tracked at all, so it does not alias anything.
957957
return;
958958
};
959-
let elems = place
960-
.projection
961-
.iter()
962-
.map(|&elem| elem.try_into())
963-
.chain(tail_elem.map(Ok).into_iter());
959+
let elems = place.projection.iter().map(|&elem| elem.try_into()).chain(tail_elem.map(Ok));
964960
for elem in elems {
965961
// A field aliases the parent place.
966962
if let Some(vi) = self.places[index].value_index {

compiler/rustc_mir_transform/src/dataflow_const_prop.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -496,7 +496,7 @@ impl<'a, 'tcx> ConstAnalysis<'a, 'tcx> {
496496
FlatSet::Elem(scalar) => {
497497
let ty = op.ty(self.local_decls, self.tcx);
498498
self.tcx.layout_of(self.param_env.and(ty)).map_or(FlatSet::Top, |layout| {
499-
FlatSet::Elem(ImmTy::from_scalar(scalar.into(), layout))
499+
FlatSet::Elem(ImmTy::from_scalar(scalar, layout))
500500
})
501501
}
502502
FlatSet::Bottom => FlatSet::Bottom,

compiler/rustc_parse/src/parser/item.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -923,7 +923,7 @@ impl<'a> Parser<'a> {
923923
);
924924
let where_predicates_split = before_where_clause.predicates.len();
925925
let mut predicates = before_where_clause.predicates;
926-
predicates.extend(after_where_clause.predicates.into_iter());
926+
predicates.extend(after_where_clause.predicates);
927927
let where_clause = WhereClause {
928928
has_where_token: before_where_clause.has_where_token
929929
|| after_where_clause.has_where_token,

compiler/rustc_parse/src/validate_attr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ fn emit_malformed_attribute(
215215
} else {
216216
"the following are the possible correct uses"
217217
},
218-
suggestions.into_iter(),
218+
suggestions,
219219
Applicability::HasPlaceholders,
220220
)
221221
.emit();

compiler/rustc_resolve/src/rustdoc.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -407,8 +407,7 @@ fn parse_links<'md>(doc: &'md str) -> Vec<Box<str>> {
407407
doc,
408408
main_body_opts(),
409409
Some(&mut broken_link_callback),
410-
)
411-
.into_iter();
410+
);
412411
let mut links = Vec::new();
413412

414413
while let Some(event) = event_iter.next() {

compiler/rustc_session/src/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1579,7 +1579,7 @@ impl CheckCfg {
15791579
pub fn build_configuration(sess: &Session, mut user_cfg: Cfg) -> Cfg {
15801580
// Combine the configuration requested by the session (command line) with
15811581
// some default and generated configuration items.
1582-
user_cfg.extend(default_configuration(sess).into_iter());
1582+
user_cfg.extend(default_configuration(sess));
15831583
user_cfg
15841584
}
15851585

compiler/rustc_smir/src/rustc_smir/context.rs

-1
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ impl<'tcx> Context for TablesWrapper<'tcx> {
158158
let crate_name = tables.tcx.crate_name(*crate_num).to_string();
159159
(name == crate_name).then(|| smir_crate(tables.tcx, *crate_num))
160160
})
161-
.into_iter()
162161
.flatten()
163162
.collect();
164163
crates

compiler/rustc_trait_selection/src/traits/object_safety.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ fn generics_require_sized_self(tcx: TyCtxt<'_>, def_id: DefId) -> bool {
345345
// Search for a predicate like `Self : Sized` amongst the trait bounds.
346346
let predicates = tcx.predicates_of(def_id);
347347
let predicates = predicates.instantiate_identity(tcx).predicates;
348-
elaborate(tcx, predicates.into_iter()).any(|pred| match pred.kind().skip_binder() {
348+
elaborate(tcx, predicates).any(|pred| match pred.kind().skip_binder() {
349349
ty::ClauseKind::Trait(ref trait_pred) => {
350350
trait_pred.def_id() == sized_def_id && trait_pred.self_ty().is_param(0)
351351
}

compiler/rustc_trait_selection/src/traits/util.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -220,9 +220,8 @@ pub fn impl_subject_and_oblig<'a, 'tcx>(
220220
selcx.infcx.at(&ObligationCause::dummy(), param_env).normalize(predicates);
221221
let impl_obligations = super::predicates_for_generics(cause, param_env, predicates);
222222

223-
let impl_obligations = impl_obligations
224-
.chain(normalization_obligations1.into_iter())
225-
.chain(normalization_obligations2.into_iter());
223+
let impl_obligations =
224+
impl_obligations.chain(normalization_obligations1).chain(normalization_obligations2);
226225

227226
(subject, impl_obligations)
228227
}

src/librustdoc/clean/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,7 @@ pub(crate) fn clean_generics<'tcx>(
743743
.into_iter()
744744
.map(|(lifetime, bounds)| WherePredicate::RegionPredicate { lifetime, bounds }),
745745
)
746-
.chain(eq_predicates.into_iter())
746+
.chain(eq_predicates)
747747
.collect(),
748748
}
749749
}

src/librustdoc/html/markdown.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ impl LangString {
13831383
};
13841384

13851385
if custom_code_classes_in_docs {
1386-
call(&mut TagIterator::new(string, extra).into_iter())
1386+
call(&mut TagIterator::new(string, extra))
13871387
} else {
13881388
call(&mut tokens(string))
13891389
}

src/librustdoc/lint.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ where
3333
let lints = || {
3434
lint::builtin::HardwiredLints::get_lints()
3535
.into_iter()
36-
.chain(rustc_lint::SoftLints::get_lints().into_iter())
36+
.chain(rustc_lint::SoftLints::get_lints())
3737
};
3838

3939
let lint_opts = lints()
@@ -46,7 +46,7 @@ where
4646
filter_call(lint)
4747
}
4848
})
49-
.chain(lint_opts.into_iter())
49+
.chain(lint_opts)
5050
.collect::<Vec<_>>();
5151

5252
let lint_caps = lints()

src/librustdoc/passes/check_custom_code_classes.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ struct TestsWithCustomClasses {
4848

4949
impl crate::doctest::Tester for TestsWithCustomClasses {
5050
fn add_test(&mut self, _: String, config: LangString, _: usize) {
51-
self.custom_classes_found.extend(config.added_classes.into_iter());
51+
self.custom_classes_found.extend(config.added_classes);
5252
}
5353
}
5454

src/librustdoc/visit_ast.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,11 @@ impl<'a, 'tcx> RustdocVisitor<'a, 'tcx> {
168168
})
169169
.collect::<Vec<_>>()
170170
})
171-
.chain(
172-
[Cfg::Cfg(sym::test, None), Cfg::Cfg(sym::doc, None), Cfg::Cfg(sym::doctest, None)]
173-
.into_iter(),
174-
)
171+
.chain([
172+
Cfg::Cfg(sym::test, None),
173+
Cfg::Cfg(sym::doc, None),
174+
Cfg::Cfg(sym::doctest, None),
175+
])
175176
.collect();
176177

177178
self.cx.cache.exact_paths = self.exact_paths;

0 commit comments

Comments
 (0)