Skip to content

Commit 39071fd

Browse files
authored
Rollup merge of rust-lang#131626 - matthiaskrgr:dont_string, r=lqd
remove a couple of redundant String to String conversion
2 parents ae8342a + 4bc21e3 commit 39071fd

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

compiler/rustc_borrowck/src/diagnostics/move_errors.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -706,7 +706,7 @@ impl<'infcx, 'tcx> MirBorrowckCtxt<'_, 'infcx, 'tcx> {
706706
suggestions.push((
707707
pat_span,
708708
format!("consider removing the {to_remove}"),
709-
suggestion.to_string(),
709+
suggestion,
710710
));
711711
}
712712
}

compiler/rustc_codegen_llvm/src/asm.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ impl<'ll, 'tcx> AsmBuilderMethods<'tcx> for Builder<'_, 'll, 'tcx> {
154154
// We prefer the latter because it matches the behavior of
155155
// Clang.
156156
if late && matches!(reg, InlineAsmRegOrRegClass::Reg(_)) {
157-
constraints.push(reg_to_llvm(reg, Some(&in_value.layout)).to_string());
157+
constraints.push(reg_to_llvm(reg, Some(&in_value.layout)));
158158
} else {
159159
constraints.push(format!("{}", op_idx[&idx]));
160160
}

compiler/rustc_middle/src/ty/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ pub fn suggest_constraining_type_params<'a>(
325325
let suggestion = if span_to_replace.is_some() {
326326
constraint.clone()
327327
} else if constraint.starts_with('<') {
328-
constraint.to_string()
328+
constraint.clone()
329329
} else if bound_list_non_empty {
330330
format!(" + {constraint}")
331331
} else {

compiler/rustc_session/src/utils.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ pub fn extra_compiler_flags() -> Option<(Vec<String>, bool)> {
137137
let content = if arg.len() == a.len() {
138138
// A space-separated option, like `-C incremental=foo` or `--crate-type rlib`
139139
match args.next() {
140-
Some(arg) => arg.to_string(),
140+
Some(arg) => arg,
141141
None => continue,
142142
}
143143
} else if arg.get(a.len()..a.len() + 1) == Some("=") {

0 commit comments

Comments
 (0)