Skip to content

Commit 914d8f4

Browse files
committed
add rustc_lint_opt_deny_field_access to options that are documented to do nothing
1 parent df38e64 commit 914d8f4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

compiler/rustc_session/src/options.rs

+3
Original file line numberDiff line numberDiff line change
@@ -1511,6 +1511,7 @@ options! {
15111511
// - src/doc/rustc/src/codegen-options/index.md
15121512

15131513
// tidy-alphabetical-start
1514+
#[rustc_lint_opt_deny_field_access("documented to do nothing")]
15141515
ar: String = (String::new(), parse_string, [UNTRACKED],
15151516
"this option is deprecated and does nothing"),
15161517
#[rustc_lint_opt_deny_field_access("use `Session::code_model` instead of this field")]
@@ -1543,6 +1544,7 @@ options! {
15431544
"force use of unwind tables"),
15441545
incremental: Option<String> = (None, parse_opt_string, [UNTRACKED],
15451546
"enable incremental compilation"),
1547+
#[rustc_lint_opt_deny_field_access("documented to do nothing")]
15461548
inline_threshold: Option<u32> = (None, parse_opt_number, [TRACKED],
15471549
"this option is deprecated and does nothing \
15481550
(consider using `-Cllvm-args=--inline-threshold=...`)"),
@@ -1579,6 +1581,7 @@ options! {
15791581
"give an empty list of passes to the pass manager"),
15801582
no_redzone: Option<bool> = (None, parse_opt_bool, [TRACKED],
15811583
"disable the use of the redzone"),
1584+
#[rustc_lint_opt_deny_field_access("documented to do nothing")]
15821585
no_stack_check: bool = (false, parse_no_flag, [UNTRACKED],
15831586
"this option is deprecated and does nothing"),
15841587
no_vectorize_loops: bool = (false, parse_no_flag, [TRACKED],

0 commit comments

Comments
 (0)