Fix help docs for -Zallow-features
This commit is contained in:
parent
af58fc8699
commit
d0c47bdcc9
2 changed files with 2 additions and 2 deletions
|
@ -1241,7 +1241,7 @@ options! {
|
||||||
|
|
||||||
// tidy-alphabetical-start
|
// tidy-alphabetical-start
|
||||||
allow_features: Option<Vec<String>> = (None, parse_opt_comma_list, [TRACKED],
|
allow_features: Option<Vec<String>> = (None, parse_opt_comma_list, [TRACKED],
|
||||||
"only allow the listed language features to be enabled in code (space separated)"),
|
"only allow the listed language features to be enabled in code (comma separated)"),
|
||||||
always_encode_mir: bool = (false, parse_bool, [TRACKED],
|
always_encode_mir: bool = (false, parse_bool, [TRACKED],
|
||||||
"encode MIR of all functions into the crate metadata (default: no)"),
|
"encode MIR of all functions into the crate metadata (default: no)"),
|
||||||
asm_comments: bool = (false, parse_bool, [TRACKED],
|
asm_comments: bool = (false, parse_bool, [TRACKED],
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
-Z allow-features=val -- only allow the listed language features to be enabled in code (space separated)
|
-Z allow-features=val -- only allow the listed language features to be enabled in code (comma separated)
|
||||||
-Z always-encode-mir=val -- encode MIR of all functions into the crate metadata (default: no)
|
-Z always-encode-mir=val -- encode MIR of all functions into the crate metadata (default: no)
|
||||||
-Z asm-comments=val -- generate comments into the assembly (may change behavior) (default: no)
|
-Z asm-comments=val -- generate comments into the assembly (may change behavior) (default: no)
|
||||||
-Z assert-incr-state=val -- assert that the incremental cache is in given state: either `loaded` or `not-loaded`.
|
-Z assert-incr-state=val -- assert that the incremental cache is in given state: either `loaded` or `not-loaded`.
|
||||||
|
|
Loading…
Add table
Reference in a new issue