Skip to content

Commit 62793dc

Browse files
authored
Rollup merge of #73841 - tmiasko:print-region-graph, r=Mark-Simulacrum
Remove defunct `-Z print-region-graph`
2 parents 9796035 + 14d0370 commit 62793dc

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

Diff for: src/librustc_interface/tests.rs

-1
Original file line numberDiff line numberDiff line change
@@ -500,7 +500,6 @@ fn test_debugging_options_tracking_hash() {
500500
untracked!(print_link_args, true);
501501
untracked!(print_llvm_passes, true);
502502
untracked!(print_mono_items, Some(String::from("abc")));
503-
untracked!(print_region_graph, true);
504503
untracked!(print_type_sizes, true);
505504
untracked!(query_dep_graph, true);
506505
untracked!(query_stats, true);

Diff for: src/librustc_session/options.rs

-3
Original file line numberDiff line numberDiff line change
@@ -959,9 +959,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
959959
"print the LLVM optimization passes being run (default: no)"),
960960
print_mono_items: Option<String> = (None, parse_opt_string, [UNTRACKED],
961961
"print the result of the monomorphization collection pass"),
962-
print_region_graph: bool = (false, parse_bool, [UNTRACKED],
963-
"prints region inference graph. \
964-
Use with RUST_REGION_GRAPH=help for more info (default: no)"),
965962
print_type_sizes: bool = (false, parse_bool, [UNTRACKED],
966963
"print layout information for each type encountered (default: no)"),
967964
profile: bool = (false, parse_bool, [TRACKED],

0 commit comments

Comments
 (0)