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 @@ -582,6 +582,7 @@ fn test_codegen_options_tracking_hash() {
582
582
untracked ! ( dlltool, Some ( PathBuf :: from( "custom_dlltool.exe" ) ) ) ;
583
583
untracked ! ( extra_filename, String :: from( "extra-filename" ) ) ;
584
584
untracked ! ( incremental, Some ( String :: from( "abc" ) ) ) ;
585
+ untracked ! ( inline_threshold, Some ( 0xf007ba11 ) ) ;
585
586
// `link_arg` is omitted because it just forwards to `link_args`.
586
587
untracked ! ( link_args, vec![ String :: from( "abc" ) , String :: from( "def" ) ] ) ;
587
588
untracked ! ( link_self_contained, LinkSelfContained :: on( ) ) ;
@@ -613,7 +614,6 @@ fn test_codegen_options_tracking_hash() {
613
614
tracked ! ( embed_bitcode, false ) ;
614
615
tracked ! ( force_frame_pointers, FramePointer :: Always ) ;
615
616
tracked ! ( force_unwind_tables, Some ( true ) ) ;
616
- tracked ! ( inline_threshold, Some ( 0xf007ba11 ) ) ;
617
617
tracked ! ( instrument_coverage, InstrumentCoverage :: Yes ) ;
618
618
tracked ! ( link_dead_code, Some ( true ) ) ;
619
619
tracked ! ( linker_plugin_lto, LinkerPluginLto :: LinkerPluginAuto ) ;
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