Skip to content

Commit f74eee2

Browse files
committed
[rustc_span][perf] Remove unnecessary string joins and allocs.
Comparing vectors of string parts yields the same result but avoids unnecessary `join` and potential allocation for resulting `String`. This code is cold so it's unlikely to have any measurable impact, but considering but since it's also simpler, why not? :)
1 parent abd3637 commit f74eee2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_span/src/edit_distance.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,9 +247,9 @@ fn find_match_by_sorted_words(iter_names: &[Symbol], lookup: &str) -> Option<Sym
247247
})
248248
}
249249

250-
fn sort_by_words(name: &str) -> String {
250+
fn sort_by_words(name: &str) -> Vec<&str> {
251251
let mut split_words: Vec<&str> = name.split('_').collect();
252252
// We are sorting primitive &strs and can use unstable sort here.
253253
split_words.sort_unstable();
254-
split_words.join("_")
254+
split_words
255255
}

0 commit comments

Comments
 (0)