@@ -10,11 +10,11 @@ use rustc_errors::{registry, ColorConfig};
10
10
use rustc_session:: config:: {
11
11
build_configuration, build_session_options, rustc_optgroups, BranchProtection , CFGuard , Cfg ,
12
12
CollapseMacroDebuginfo , CoverageLevel , CoverageOptions , DebugInfo , DumpMonoStatsFormat ,
13
- ErrorOutputType , ExternEntry , ExternLocation , Externs , FunctionReturn , InliningThreshold ,
14
- Input , InstrumentCoverage , InstrumentXRay , LinkSelfContained , LinkerPluginLto , LocationDetail ,
15
- LtoCli , NextSolverConfig , OomStrategy , Options , OutFileName , OutputType , OutputTypes , PAuthKey ,
16
- PacRet , Passes , PatchableFunctionEntry , Polonius , ProcMacroExecutionStrategy , Strip ,
17
- SwitchWithOptPath , SymbolManglingVersion , WasiExecModel ,
13
+ ErrorOutputType , ExternEntry , ExternLocation , Externs , FmtDebug , FunctionReturn ,
14
+ InliningThreshold , Input , InstrumentCoverage , InstrumentXRay , LinkSelfContained ,
15
+ LinkerPluginLto , LocationDetail , LtoCli , NextSolverConfig , OomStrategy , Options , OutFileName ,
16
+ OutputType , OutputTypes , PAuthKey , PacRet , Passes , PatchableFunctionEntry , Polonius ,
17
+ ProcMacroExecutionStrategy , Strip , SwitchWithOptPath , SymbolManglingVersion , WasiExecModel ,
18
18
} ;
19
19
use rustc_session:: lint:: Level ;
20
20
use rustc_session:: search_paths:: SearchPath ;
@@ -780,6 +780,7 @@ fn test_unstable_options_tracking_hash() {
780
780
tracked ! ( fewer_names, Some ( true ) ) ;
781
781
tracked ! ( fixed_x18, true ) ;
782
782
tracked ! ( flatten_format_args, false ) ;
783
+ tracked ! ( fmt_debug, FmtDebug :: Shallow ) ;
783
784
tracked ! ( force_unstable_if_unmarked, true ) ;
784
785
tracked ! ( fuel, Some ( ( "abc" . to_string( ) , 99 ) ) ) ;
785
786
tracked ! ( function_return, FunctionReturn :: ThunkExtern ) ;
@@ -794,6 +795,7 @@ fn test_unstable_options_tracking_hash() {
794
795
tracked ! ( instrument_xray, Some ( InstrumentXRay :: default ( ) ) ) ;
795
796
tracked ! ( link_directives, false ) ;
796
797
tracked ! ( link_only, true ) ;
798
+ tracked ! ( lint_llvm_ir, true ) ;
797
799
tracked ! ( llvm_module_flag, vec![ ( "bar" . to_string( ) , 123 , "max" . to_string( ) ) ] ) ;
798
800
tracked ! ( llvm_plugins, vec![ String :: from( "plugin_name" ) ] ) ;
799
801
tracked ! ( location_detail, LocationDetail { file: true , line: false , column: false } ) ;
0 commit comments