@@ -1511,6 +1511,7 @@ options! {
1511
1511
// - src/doc/rustc/src/codegen-options/index.md
1512
1512
1513
1513
// tidy-alphabetical-start
1514
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1514
1515
ar: String = ( String :: new( ) , parse_string, [ UNTRACKED ] ,
1515
1516
"this option is deprecated and does nothing" ) ,
1516
1517
#[ rustc_lint_opt_deny_field_access( "use `Session::code_model` instead of this field" ) ]
@@ -1543,6 +1544,7 @@ options! {
1543
1544
"force use of unwind tables" ) ,
1544
1545
incremental: Option <String > = ( None , parse_opt_string, [ UNTRACKED ] ,
1545
1546
"enable incremental compilation" ) ,
1547
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1546
1548
inline_threshold: Option <u32 > = ( None , parse_opt_number, [ TRACKED ] ,
1547
1549
"this option is deprecated and does nothing \
1548
1550
(consider using `-Cllvm-args=--inline-threshold=...`)") ,
@@ -1579,6 +1581,7 @@ options! {
1579
1581
"give an empty list of passes to the pass manager" ) ,
1580
1582
no_redzone: Option <bool > = ( None , parse_opt_bool, [ TRACKED ] ,
1581
1583
"disable the use of the redzone" ) ,
1584
+ #[ rustc_lint_opt_deny_field_access( "documented to do nothing" ) ]
1582
1585
no_stack_check: bool = ( false , parse_no_flag, [ UNTRACKED ] ,
1583
1586
"this option is deprecated and does nothing" ) ,
1584
1587
no_vectorize_loops: bool = ( false , parse_no_flag, [ TRACKED ] ,
0 commit comments