Skip to content

Commit 537285e

Browse files
committed
Fix -Z no-analysis
1 parent ad9e759 commit 537285e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc/session/config.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,7 @@ pub fn debugging_opts_map() -> Vec<(&'static str, &'static str, u64)> {
330330
("parse-only", "Parse only; do not compile, assemble, or link", PARSE_ONLY),
331331
("no-trans", "Run all passes except translation; no output", NO_TRANS),
332332
("no-analysis", "Parse and expand the source, but run no analysis and",
333-
NO_TRANS),
333+
NO_ANALYSIS),
334334
("unstable-options", "Adds unstable command line options to rustc interface",
335335
UNSTABLE_OPTIONS),
336336
("print-enum-sizes", "Print the size of enums and their variants", PRINT_ENUM_SIZES),

0 commit comments

Comments
 (0)