Skip to content

Commit 4dc8d0c

Browse files
Rollup merge of rust-lang#56452 - sinkuu:redundant_clone, r=nikic
Remove redundant clones
2 parents 82a30d4 + bc7c3dc commit 4dc8d0c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/librustc_mir/monomorphize/partitioning.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ fn merge_codegen_units<'tcx>(tcx: TyCtxt<'_, 'tcx, 'tcx>,
585585
// smallest into each other) we're sure to start off with a deterministic
586586
// order (sorted by name). This'll mean that if two cgus have the same size
587587
// the stable sort below will keep everything nice and deterministic.
588-
codegen_units.sort_by_key(|cgu| cgu.name().clone());
588+
codegen_units.sort_by_key(|cgu| *cgu.name());
589589

590590
// Merge the two smallest codegen units until the target size is reached.
591591
while codegen_units.len() > target_cgu_count {
@@ -985,7 +985,7 @@ fn collect_and_partition_mono_items<'a, 'tcx>(
985985
output.push_str(" @@");
986986
let mut empty = Vec::new();
987987
let cgus = item_to_cgus.get_mut(i).unwrap_or(&mut empty);
988-
cgus.as_mut_slice().sort_by_cached_key(|&(ref name, _)| name.clone());
988+
cgus.sort_by_key(|(name, _)| *name);
989989
cgus.dedup();
990990
for &(ref cgu_name, (linkage, _)) in cgus.iter() {
991991
output.push_str(" ");

src/librustc_resolve/build_reduced_graph.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ impl<'a, 'cl> Resolver<'a, 'cl> {
318318
// This particular use tree
319319
&tree, id, &prefix, true,
320320
// The whole `use` item
321-
parent_scope.clone(), item, ty::Visibility::Invisible, root_span,
321+
parent_scope, item, ty::Visibility::Invisible, root_span,
322322
);
323323
}
324324
}

src/libsyntax/ext/tt/macro_parser.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ fn create_matches(len: usize) -> Box<[Rc<NamedMatchVec>]> {
309309
vec![]
310310
} else {
311311
let empty_matches = Rc::new(SmallVec::new());
312-
vec![empty_matches.clone(); len]
312+
vec![empty_matches; len]
313313
}.into_boxed_slice()
314314
}
315315

0 commit comments

Comments
 (0)