@@ -1341,9 +1341,6 @@ options! {
13411341 "panic strategy for panics in drops" ) ,
13421342 parse_only: bool = ( false , parse_bool, [ UNTRACKED ] ,
13431343 "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)") ,
13471344 perf_stats: bool = ( false , parse_bool, [ UNTRACKED ] ,
13481345 "print some performance-related statistics (default: no)" ) ,
13491346 pick_stable_methods_before_any_unstable: bool = ( true , parse_bool, [ TRACKED ] ,
@@ -1488,6 +1485,9 @@ options! {
14881485 "in diagnostics, use heuristics to shorten paths referring to items" ) ,
14891486 ui_testing: bool = ( false , parse_bool, [ UNTRACKED ] ,
14901487 "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)") ,
14911491 unleash_the_miri_inside_of_you: bool = ( false , parse_bool, [ TRACKED ] ,
14921492 "take the brakes off const evaluation. NOTE: this is unsound (default: no)" ) ,
14931493 unpretty: Option <String > = ( None , parse_unpretty, [ UNTRACKED ] ,
0 commit comments