@@ -1341,9 +1341,6 @@ options! {
1341
1341
"panic strategy for panics in drops" ) ,
1342
1342
parse_only: bool = ( false , parse_bool, [ UNTRACKED ] ,
1343
1343
"parse only; do not compile, assemble, or link (default: no)" ) ,
1344
- partially_uninit_const_threshold: Option <usize > = ( Some ( 1024 ) , parse_opt_number, [ TRACKED ] ,
1345
- "allow generating const initializers with mixed init/uninit bytes, \
1346
- and set the maximum total size of a const allocation for which this is allowed (default: 1024 bytes)") ,
1347
1344
perf_stats: bool = ( false , parse_bool, [ UNTRACKED ] ,
1348
1345
"print some performance-related statistics (default: no)" ) ,
1349
1346
pick_stable_methods_before_any_unstable: bool = ( true , parse_bool, [ TRACKED ] ,
@@ -1488,6 +1485,9 @@ options! {
1488
1485
"in diagnostics, use heuristics to shorten paths referring to items" ) ,
1489
1486
ui_testing: bool = ( false , parse_bool, [ UNTRACKED ] ,
1490
1487
"emit compiler diagnostics in a form suitable for UI testing (default: no)" ) ,
1488
+ uninit_const_chunk_threshold: usize = ( 256 , parse_number, [ TRACKED ] ,
1489
+ "allow generating const initializers with mixed init/uninit chunks, \
1490
+ and set the maximum number of chunks for which this is allowed (default: 256)") ,
1491
1491
unleash_the_miri_inside_of_you: bool = ( false , parse_bool, [ TRACKED ] ,
1492
1492
"take the brakes off const evaluation. NOTE: this is unsound (default: no)" ) ,
1493
1493
unpretty: Option <String > = ( None , parse_unpretty, [ UNTRACKED ] ,
0 commit comments