diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2020-07-01 20:35:54 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-01 20:35:54 -0700 |
| commit | e04070a351f83c6ef89be5344dbcfdee2bfe7180 (patch) | |
| tree | 8645d8adb356375bd6fd7eae11b0d118f2270580 /src | |
| parent | 244dd2806d7e432be7220389c87e32c68a62b7c7 (diff) | |
| parent | 14d03702735ccca48f5b954db6c01e9cedb14f29 (diff) | |
| download | rust-e04070a351f83c6ef89be5344dbcfdee2bfe7180.tar.gz rust-e04070a351f83c6ef89be5344dbcfdee2bfe7180.zip | |
Rollup merge of #73841 - tmiasko:print-region-graph, r=Mark-Simulacrum
Remove defunct `-Z print-region-graph`
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_interface/tests.rs | 1 | ||||
| -rw-r--r-- | src/librustc_session/options.rs | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/librustc_interface/tests.rs b/src/librustc_interface/tests.rs index d861b444c88..e35dbbc0c2f 100644 --- a/src/librustc_interface/tests.rs +++ b/src/librustc_interface/tests.rs @@ -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); diff --git a/src/librustc_session/options.rs b/src/librustc_session/options.rs index 9337f241d70..ed5fd6dc702 100644 --- a/src/librustc_session/options.rs +++ b/src/librustc_session/options.rs @@ -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], |
