diff options
| author | Ralf Jung <post@ralfj.de> | 2024-09-03 12:21:38 +0200 |
|---|---|---|
| committer | Ralf Jung <post@ralfj.de> | 2024-09-03 12:22:56 +0200 |
| commit | 914d8f4bca7990768ca9b5c8d6227d7177b55b4a (patch) | |
| tree | 795c085eda40997b5d4b8c5ecba151948100c810 /compiler/rustc_session/src | |
| parent | df38e644ce24510f948fff3a0977087155ac4b08 (diff) | |
| download | rust-914d8f4bca7990768ca9b5c8d6227d7177b55b4a.tar.gz rust-914d8f4bca7990768ca9b5c8d6227d7177b55b4a.zip | |
add rustc_lint_opt_deny_field_access to options that are documented to do nothing
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/options.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/compiler/rustc_session/src/options.rs b/compiler/rustc_session/src/options.rs index 4427cf346bb..eacdc035957 100644 --- a/compiler/rustc_session/src/options.rs +++ b/compiler/rustc_session/src/options.rs @@ -1511,6 +1511,7 @@ options! { // - src/doc/rustc/src/codegen-options/index.md // tidy-alphabetical-start + #[rustc_lint_opt_deny_field_access("documented to do nothing")] ar: String = (String::new(), parse_string, [UNTRACKED], "this option is deprecated and does nothing"), #[rustc_lint_opt_deny_field_access("use `Session::code_model` instead of this field")] @@ -1543,6 +1544,7 @@ options! { "force use of unwind tables"), incremental: Option<String> = (None, parse_opt_string, [UNTRACKED], "enable incremental compilation"), + #[rustc_lint_opt_deny_field_access("documented to do nothing")] inline_threshold: Option<u32> = (None, parse_opt_number, [TRACKED], "this option is deprecated and does nothing \ (consider using `-Cllvm-args=--inline-threshold=...`)"), @@ -1579,6 +1581,7 @@ options! { "give an empty list of passes to the pass manager"), no_redzone: Option<bool> = (None, parse_opt_bool, [TRACKED], "disable the use of the redzone"), + #[rustc_lint_opt_deny_field_access("documented to do nothing")] no_stack_check: bool = (false, parse_no_flag, [UNTRACKED], "this option is deprecated and does nothing"), no_vectorize_loops: bool = (false, parse_no_flag, [TRACKED], |
