diff options
Diffstat (limited to 'crates/rust-analyzer/src/bin/main.rs')
-rw-r--r-- | crates/rust-analyzer/src/bin/main.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/bin/main.rs b/crates/rust-analyzer/src/bin/main.rs index 65f1a6d15..408892eab 100644 --- a/crates/rust-analyzer/src/bin/main.rs +++ b/crates/rust-analyzer/src/bin/main.rs | |||
@@ -49,11 +49,12 @@ fn main() -> Result<()> { | |||
49 | load_output_dirs, | 49 | load_output_dirs, |
50 | with_proc_macro, | 50 | with_proc_macro, |
51 | )?, | 51 | )?, |
52 | args::Command::Bench { path, what, load_output_dirs, with_proc_macro } => { | 52 | args::Command::Bench { memory_usage, path, what, load_output_dirs, with_proc_macro } => { |
53 | cli::analysis_bench( | 53 | cli::analysis_bench( |
54 | args.verbosity, | 54 | args.verbosity, |
55 | path.as_ref(), | 55 | path.as_ref(), |
56 | what, | 56 | what, |
57 | memory_usage, | ||
57 | load_output_dirs, | 58 | load_output_dirs, |
58 | with_proc_macro, | 59 | with_proc_macro, |
59 | )? | 60 | )? |