@@ -1241,7 +1241,7 @@ options! {
12411241
12421242 // tidy-alphabetical-start
12431243 allow_features: Option <Vec <String >> = ( None , parse_opt_comma_list, [ TRACKED ] ,
1244- "only allow the listed language features to be enabled in code (space separated)" ) ,
1244+ "only allow the listed language features to be enabled in code (comma separated)" ) ,
12451245 always_encode_mir: bool = ( false , parse_bool, [ TRACKED ] ,
12461246 "encode MIR of all functions into the crate metadata (default: no)" ) ,
12471247 asm_comments: bool = ( false , parse_bool, [ TRACKED ] ,
@@ -1255,7 +1255,7 @@ options! {
12551255 binary_dep_depinfo: bool = ( false , parse_bool, [ TRACKED ] ,
12561256 "include artifacts (sysroot, crate dependencies) used during compilation in dep-info \
12571257 (default: no)") ,
1258- box_noalias: Option < bool > = ( None , parse_opt_bool , [ TRACKED ] ,
1258+ box_noalias: bool = ( true , parse_bool , [ TRACKED ] ,
12591259 "emit noalias metadata for box (default: yes)" ) ,
12601260 branch_protection: Option <BranchProtection > = ( None , parse_branch_protection, [ TRACKED ] ,
12611261 "set options for branch target identification and pointer authentication on AArch64" ) ,
@@ -1437,7 +1437,7 @@ options! {
14371437 "use line numbers relative to the function in mir pretty printing" ) ,
14381438 move_size_limit: Option <usize > = ( None , parse_opt_number, [ TRACKED ] ,
14391439 "the size at which the `large_assignments` lint starts to be emitted" ) ,
1440- mutable_noalias: Option < bool > = ( None , parse_opt_bool , [ TRACKED ] ,
1440+ mutable_noalias: bool = ( true , parse_bool , [ TRACKED ] ,
14411441 "emit noalias metadata for mutable references (default: yes)" ) ,
14421442 nll_facts: bool = ( false , parse_bool, [ UNTRACKED ] ,
14431443 "dump facts from NLL analysis into side files (default: no)" ) ,
0 commit comments