Skip to content

Commit 14d0370

Browse files
committed
Remove defunct -Z print-region-graph
1 parent 25687ca commit 14d0370

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

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);

src/librustc_session/options.rs

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

0 commit comments

Comments
 (0)