@@ -1247,8 +1247,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1247
1247
"for every macro invocation, print its name and arguments" ) ,
1248
1248
debug_macros: bool = ( false , parse_bool, [ TRACKED ] ,
1249
1249
"emit line numbers debug info inside macros" ) ,
1250
- enable_nonzeroing_move_hints: bool = ( false , parse_bool, [ TRACKED ] ,
1251
- "force nonzeroing move optimization on" ) ,
1252
1250
keep_hygiene_data: bool = ( false , parse_bool, [ UNTRACKED ] ,
1253
1251
"don't clear the hygiene data after analysis" ) ,
1254
1252
keep_ast: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -3168,10 +3166,6 @@ mod tests {
3168
3166
opts. debugging_opts . force_overflow_checks = Some ( true ) ;
3169
3167
assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
3170
3168
3171
- opts = reference. clone ( ) ;
3172
- opts. debugging_opts . enable_nonzeroing_move_hints = true ;
3173
- assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
3174
-
3175
3169
opts = reference. clone ( ) ;
3176
3170
opts. debugging_opts . show_span = Some ( String :: from ( "abc" ) ) ;
3177
3171
assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
0 commit comments