Skip to content

Commit 60a842f

Browse files
committed
Remove an unstable and dead compiler flag
The last use has been removed by commit fb9ca16 .
1 parent 8bcbf91 commit 60a842f

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/librustc/session/config.rs

-4
Original file line numberDiff line numberDiff line change
@@ -1047,8 +1047,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
10471047
save_analysis: bool = (false, parse_bool, [UNTRACKED],
10481048
"write syntax and type analysis (in JSON format) information, in \
10491049
addition to normal output"),
1050-
print_move_fragments: bool = (false, parse_bool, [UNTRACKED],
1051-
"print out move-fragment data for every fn"),
10521050
flowgraph_print_loans: bool = (false, parse_bool, [UNTRACKED],
10531051
"include loan analysis data in --unpretty flowgraph output"),
10541052
flowgraph_print_moves: bool = (false, parse_bool, [UNTRACKED],
@@ -2672,8 +2670,6 @@ mod tests {
26722670
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26732671
opts.debugging_opts.save_analysis = true;
26742672
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
2675-
opts.debugging_opts.print_move_fragments = true;
2676-
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26772673
opts.debugging_opts.flowgraph_print_loans = true;
26782674
assert_eq!(reference.dep_tracking_hash(), opts.dep_tracking_hash());
26792675
opts.debugging_opts.flowgraph_print_moves = true;

0 commit comments

Comments
 (0)