@@ -793,8 +793,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
793
793
"enable incremental compilation (experimental)" ) ,
794
794
incremental_info: bool = ( false , parse_bool, [ UNTRACKED ] ,
795
795
"print high-level information about incremental reuse (or the lack thereof)" ) ,
796
- incremental_dump_hash: bool = ( false , parse_bool, [ UNTRACKED ] ,
797
- "dump hash information in textual format to stdout" ) ,
798
796
incremental_verify_ich: bool = ( false , parse_bool, [ UNTRACKED ] ,
799
797
"verify incr. comp. hashes of green query instances" ) ,
800
798
incremental_ignore_spans: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -819,8 +817,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
819
817
"don't generate DWARF address ranges that give faster lookups" ) ,
820
818
keep_hygiene_data: bool = ( false , parse_bool, [ UNTRACKED ] ,
821
819
"don't clear the hygiene data after analysis" ) ,
822
- keep_ast: bool = ( false , parse_bool, [ UNTRACKED ] ,
823
- "keep the AST after lowering it to HIR" ) ,
824
820
show_span: Option <String > = ( None , parse_opt_string, [ TRACKED ] ,
825
821
"show spans for compiler debugging (expr|pat|ty)" ) ,
826
822
print_type_sizes: bool = ( false , parse_bool, [ UNTRACKED ] ,
@@ -855,8 +851,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
855
851
"print some statistics about AST and HIR" ) ,
856
852
always_encode_mir: bool = ( false , parse_bool, [ TRACKED ] ,
857
853
"encode MIR of all functions into the crate metadata" ) ,
858
- json_rendered: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
859
- "describes how to render the `rendered` field of json diagnostics" ) ,
860
854
unleash_the_miri_inside_of_you: bool = ( false , parse_bool, [ TRACKED ] ,
861
855
"take the breaks off const evaluation. NOTE: this is unsound" ) ,
862
856
osx_rpath_install_name: bool = ( false , parse_bool, [ TRACKED ] ,
@@ -887,8 +881,6 @@ options! {DebuggingOptions, DebuggingSetter, basic_debugging_options,
887
881
"emit diagnostics rather than buffering (breaks NLL error downgrading, sorting)." ) ,
888
882
polonius: bool = ( false , parse_bool, [ UNTRACKED ] ,
889
883
"enable polonius-based borrow-checker" ) ,
890
- codegen_time_graph: bool = ( false , parse_bool, [ UNTRACKED ] ,
891
- "generate a graphical HTML report of time spent in codegen and LLVM" ) ,
892
884
thinlto: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
893
885
"enable ThinLTO when possible" ) ,
894
886
inline_in_all_cgus: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
0 commit comments