@@ -10,11 +10,11 @@ use rustc_errors::{registry, ColorConfig};
1010use rustc_session:: config:: {
1111 build_configuration, build_session_options, rustc_optgroups, BranchProtection , CFGuard , Cfg ,
1212 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 ,
1818} ;
1919use rustc_session:: lint:: Level ;
2020use rustc_session:: search_paths:: SearchPath ;
@@ -780,6 +780,7 @@ fn test_unstable_options_tracking_hash() {
780780 tracked ! ( fewer_names, Some ( true ) ) ;
781781 tracked ! ( fixed_x18, true ) ;
782782 tracked ! ( flatten_format_args, false ) ;
783+ tracked ! ( fmt_debug, FmtDebug :: Shallow ) ;
783784 tracked ! ( force_unstable_if_unmarked, true ) ;
784785 tracked ! ( fuel, Some ( ( "abc" . to_string( ) , 99 ) ) ) ;
785786 tracked ! ( function_return, FunctionReturn :: ThunkExtern ) ;
@@ -794,6 +795,7 @@ fn test_unstable_options_tracking_hash() {
794795 tracked ! ( instrument_xray, Some ( InstrumentXRay :: default ( ) ) ) ;
795796 tracked ! ( link_directives, false ) ;
796797 tracked ! ( link_only, true ) ;
798+ tracked ! ( lint_llvm_ir, true ) ;
797799 tracked ! ( llvm_module_flag, vec![ ( "bar" . to_string( ) , 123 , "max" . to_string( ) ) ] ) ;
798800 tracked ! ( llvm_plugins, vec![ String :: from( "plugin_name" ) ] ) ;
799801 tracked ! ( location_detail, LocationDetail { file: true , line: false , column: false } ) ;
0 commit comments