@@ -1515,6 +1515,7 @@ options! {
1515
1515
// - src/doc/rustc/src/codegen-options/index.md
1516
1516
1517
1517
// tidy-alphabetical-start
1518
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1518
1519
ar: String = ( String :: new( ) , parse_string, [ UNTRACKED ] ,
1519
1520
"this option is deprecated and does nothing" ) ,
1520
1521
#[ rustc_lint_opt_deny_field_access( "use `Session::code_model` instead of this field" ) ]
@@ -1547,6 +1548,7 @@ options! {
1547
1548
"force use of unwind tables" ) ,
1548
1549
incremental: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
1549
1550
"enable incremental compilation" ) ,
1551
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1550
1552
inline_threshold: Option <u32 > = ( None , parse_opt_number, [ TRACKED ] ,
1551
1553
"this option is deprecated and does nothing \
1552
1554
(consider using `-Cllvm-args=--inline-threshold=...`)") ,
@@ -1583,6 +1585,7 @@ options! {
1583
1585
"give an empty list of passes to the pass manager" ) ,
1584
1586
no_redzone: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1585
1587
"disable the use of the redzone" ) ,
1588
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1586
1589
no_stack_check: bool = ( false , parse_no_flag, [ UNTRACKED ] ,
1587
1590
"this option is deprecated and does nothing" ) ,
1588
1591
no_vectorize_loops: bool = ( false , parse_no_flag, [ TRACKED ] ,
@@ -1619,7 +1622,7 @@ options! {
1619
1622
save_temps: bool = ( false , parse_bool, [ UNTRACKED ] ,
1620
1623
"save all temporary output files during compilation (default: no)" ) ,
1621
1624
soft_float: bool = ( false , parse_bool, [ TRACKED ] ,
1622
- "use soft float ABI (*eabihf targets only) (default: no)" ) ,
1625
+ "deprecated option: use soft float ABI (*eabihf targets only) (default: no)" ) ,
1623
1626
#[ rustc_lint_opt_deny_field_access( "use `Session::split_debuginfo` instead of this field" ) ]
1624
1627
split_debuginfo: Option <SplitDebuginfo > = ( None , parse_split_debuginfo, [ TRACKED ] ,
1625
1628
"how to handle split-debuginfo, a platform-specific option" ) ,
0 commit comments