Add rustc-perf to metrics

This commit is contained in:
Aleksey Kladov
2020-07-25 10:35:45 +02:00
parent 0a4e90c0f8
commit 451edcc098
6 changed files with 102 additions and 30 deletions

View File

@@ -86,6 +86,6 @@ fn print_memory_usage(mut host: AnalysisHost, vfs: Vfs) {
mem.push(("Remaining".into(), ra_prof::memory_usage().allocated));
for (name, bytes) in mem {
println!("{:>8} {}", bytes, name);
eprintln!("{:>8} {}", bytes, name);
}
}