@@ -1233,8 +1233,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
1233
1233
"for every macro invocation, print its name and arguments" ) ,
1234
1234
debug_macros: bool = ( false , parse_bool, [ TRACKED ] ,
1235
1235
"emit line numbers debug info inside macros" ) ,
1236
- enable_nonzeroing_move_hints: bool = ( false , parse_bool, [ TRACKED ] ,
1237
- "force nonzeroing move optimization on" ) ,
1238
1236
keep_hygiene_data: bool = ( false , parse_bool, [ UNTRACKED ] ,
1239
1237
"don't clear the hygiene data after analysis" ) ,
1240
1238
keep_ast: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -3153,10 +3151,6 @@ mod tests {
3153
3151
opts. debugging_opts . force_overflow_checks = Some ( true ) ;
3154
3152
assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
3155
3153
3156
- opts = reference. clone ( ) ;
3157
- opts. debugging_opts . enable_nonzeroing_move_hints = true ;
3158
- assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
3159
-
3160
3154
opts = reference. clone ( ) ;
3161
3155
opts. debugging_opts . show_span = Some ( String :: from ( "abc" ) ) ;
3162
3156
assert ! ( reference. dep_tracking_hash( ) != opts. dep_tracking_hash( ) ) ;
0 commit comments