Skip to content

Commit

Permalink
Rollup merge of #73841 - tmiasko:print-region-graph, r=Mark-Simulacrum
Browse files Browse the repository at this point in the history
Remove defunct `-Z print-region-graph`
  • Loading branch information
Manishearth committed Jul 2, 2020
2 parents 244dd28 + 14d0370 commit e04070a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/librustc_interface/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -500,7 +500,6 @@ fn test_debugging_options_tracking_hash() {
untracked!(print_link_args, true);
untracked!(print_llvm_passes, true);
untracked!(print_mono_items, Some(String::from("abc")));
untracked!(print_region_graph, true);
untracked!(print_type_sizes, true);
untracked!(query_dep_graph, true);
untracked!(query_stats, true);
Expand Down
3 changes: 0 additions & 3 deletions src/librustc_session/options.rs
Original file line number Diff line number Diff line change
Expand Up @@ -958,9 +958,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
"print the LLVM optimization passes being run (default: no)"),
print_mono_items: Option<String> = (None, parse_opt_string, [UNTRACKED],
"print the result of the monomorphization collection pass"),
print_region_graph: bool = (false, parse_bool, [UNTRACKED],
"prints region inference graph. \
Use with RUST_REGION_GRAPH=help for more info (default: no)"),
print_type_sizes: bool = (false, parse_bool, [UNTRACKED],
"print layout information for each type encountered (default: no)"),
profile: bool = (false, parse_bool, [TRACKED],
Expand Down

0 comments on commit e04070a

Please sign in to comment.