Skip to content

Commit 697c5ba

Browse files
authored
Rollup merge of #46442 - est31:master, r=alexcrichton
Remove an unstable and dead compiler flag The last use has been removed by commit fb9ca16 .
2 parents fcf1e73 + 60a842f commit 697c5ba

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/librustc/session/config.rs

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,8 +1053,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
10531053
save_analysis: bool = (false, parse_bool, [UNTRACKED],
10541054
"write syntax and type analysis (in JSON format) information, in \
10551055
addition to normal output"),
1056-
print_move_fragments: bool = (false, parse_bool, [UNTRACKED],
1057-
"print out move-fragment data for every fn"),
10581056
flowgraph_print_loans: bool = (false, parse_bool, [UNTRACKED],
10591057
"include loan analysis data in --unpretty flowgraph output"),
10601058
flowgraph_print_moves: bool = (false, parse_bool, [UNTRACKED],
@@ -2684,8 +2682,6 @@ mod tests {
26842682
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26852683
opts.debugging_opts.save_analysis = true;
26862684
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
2687-
opts.debugging_opts.print_move_fragments = true;
2688-
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26892685
opts.debugging_opts.flowgraph_print_loans = true;
26902686
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26912687
opts.debugging_opts.flowgraph_print_moves = true;

0 commit comments

Comments
 (0)