File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -613,7 +613,6 @@ fn test_codegen_options_tracking_hash() {
613
613
tracked ! ( embed_bitcode, false ) ;
614
614
tracked ! ( force_frame_pointers, FramePointer :: Always ) ;
615
615
tracked ! ( force_unwind_tables, Some ( true ) ) ;
616
- tracked ! ( inline_threshold, Some ( 0xf007ba11 ) ) ;
617
616
tracked ! ( instrument_coverage, InstrumentCoverage :: Yes ) ;
618
617
tracked ! ( link_dead_code, Some ( true ) ) ;
619
618
tracked ! ( linker_plugin_lto, LinkerPluginLto :: LinkerPluginAuto ) ;
@@ -700,6 +699,7 @@ fn test_unstable_options_tracking_hash() {
700
699
untracked ! ( identify_regions, true ) ;
701
700
untracked ! ( incremental_info, true ) ;
702
701
untracked ! ( incremental_verify_ich, true ) ;
702
+ untracked ! ( inline_threshold, Some ( 0xf007ba11 ) ) ;
703
703
untracked ! ( input_stats, true ) ;
704
704
untracked ! ( link_native_libraries, false ) ;
705
705
untracked ! ( llvm_time_trace, true ) ;
Original file line number Diff line number Diff line change @@ -1586,7 +1586,7 @@ options! {
1586
1586
incremental: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
1587
1587
"enable incremental compilation" ) ,
1588
1588
#[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1589
- inline_threshold: Option <u32 > = ( None , parse_opt_number, [ TRACKED ] ,
1589
+ inline_threshold: Option <u32 > = ( None , parse_opt_number, [ UNTRACKED ] ,
1590
1590
"this option is deprecated and does nothing \
1591
1591
(consider using `-Cllvm-args=--inline-threshold=...`)",
1592
1592
deprecated_do_nothing: true ) ,
You can’t perform that action at this time.
0 commit comments