@@ -4,11 +4,11 @@ use rustc_data_structures::profiling::TimePassesFormat;
4
4
use rustc_errors:: { emitter:: HumanReadableErrorType , registry, ColorConfig } ;
5
5
use rustc_session:: config:: {
6
6
build_configuration, build_session_options, rustc_optgroups, BranchProtection , CFGuard , Cfg ,
7
- DebugInfo , DumpMonoStatsFormat , ErrorOutputType , ExternEntry , ExternLocation , Externs , Input ,
8
- InstrumentCoverage , InstrumentXRay , LinkSelfContained , LinkerPluginLto , LocationDetail , LtoCli ,
9
- MirSpanview , OomStrategy , Options , OutFileName , OutputType , OutputTypes , PAuthKey , PacRet ,
10
- Passes , Polonius , ProcMacroExecutionStrategy , Strip , SwitchWithOptPath , SymbolManglingVersion ,
11
- TraitSolver , WasiExecModel ,
7
+ DebugInfo , DumpMonoStatsFormat , ErrorOutputType , ExternEntry , ExternLocation , Externs ,
8
+ InliningThreshold , Input , InstrumentCoverage , InstrumentXRay , LinkSelfContained ,
9
+ LinkerPluginLto , LocationDetail , LtoCli , MirSpanview , OomStrategy , Options , OutFileName ,
10
+ OutputType , OutputTypes , PAuthKey , PacRet , Passes , Polonius , ProcMacroExecutionStrategy , Strip ,
11
+ SwitchWithOptPath , SymbolManglingVersion , TraitSolver , WasiExecModel ,
12
12
} ;
13
13
use rustc_session:: lint:: Level ;
14
14
use rustc_session:: search_paths:: SearchPath ;
@@ -748,7 +748,7 @@ fn test_unstable_options_tracking_hash() {
748
748
) ;
749
749
tracked ! ( codegen_backend, Some ( "abc" . to_string( ) ) ) ;
750
750
tracked ! ( crate_attr, vec![ "abc" . to_string( ) ] ) ;
751
- tracked ! ( cross_crate_inline_threshold, Some ( 200 ) ) ;
751
+ tracked ! ( cross_crate_inline_threshold, InliningThreshold :: Always ) ;
752
752
tracked ! ( debug_info_for_profiling, true ) ;
753
753
tracked ! ( debug_macros, true ) ;
754
754
tracked ! ( dep_info_omit_d_target, true ) ;
0 commit comments