@@ -1241,7 +1241,7 @@ options! {
1241
1241
1242
1242
// tidy-alphabetical-start
1243
1243
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)" ) ,
1245
1245
always_encode_mir: bool = ( false , parse_bool, [ TRACKED ] ,
1246
1246
"encode MIR of all functions into the crate metadata (default: no)" ) ,
1247
1247
asm_comments: bool = ( false , parse_bool, [ TRACKED ] ,
@@ -1255,7 +1255,7 @@ options! {
1255
1255
binary_dep_depinfo: bool = ( false , parse_bool, [ TRACKED ] ,
1256
1256
"include artifacts (sysroot, crate dependencies) used during compilation in dep-info \
1257
1257
(default: no)") ,
1258
- box_noalias: Option < bool > = ( None , parse_opt_bool , [ TRACKED ] ,
1258
+ box_noalias: bool = ( true , parse_bool , [ TRACKED ] ,
1259
1259
"emit noalias metadata for box (default: yes)" ) ,
1260
1260
branch_protection: Option <BranchProtection > = ( None , parse_branch_protection, [ TRACKED ] ,
1261
1261
"set options for branch target identification and pointer authentication on AArch64" ) ,
@@ -1437,7 +1437,7 @@ options! {
1437
1437
"use line numbers relative to the function in mir pretty printing" ) ,
1438
1438
move_size_limit: Option <usize > = ( None , parse_opt_number, [ TRACKED ] ,
1439
1439
"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 ] ,
1441
1441
"emit noalias metadata for mutable references (default: yes)" ) ,
1442
1442
nll_facts: bool = ( false , parse_bool, [ UNTRACKED ] ,
1443
1443
"dump facts from NLL analysis into side files (default: no)" ) ,
0 commit comments