diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-02-12 09:26:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-02-12 09:26:26 +0100 |
| commit | 0e3ecd28fd6b3671b62e91661797f20a3f9c7deb (patch) | |
| tree | e97706832717d66ab32f137f22edc560688bd472 | |
| parent | 16f490f3547e0784b1feb8df9cfd82d3b4a1c117 (diff) | |
| parent | 56d43a28fe811ddeae1e48520101f07952abdbb6 (diff) | |
| download | rust-0e3ecd28fd6b3671b62e91661797f20a3f9c7deb.tar.gz rust-0e3ecd28fd6b3671b62e91661797f20a3f9c7deb.zip | |
Rollup merge of #93928 - nsunderland1:master, r=Mark-Simulacrum
Add missing release notes for #85200 Fixes #93894
| -rw-r--r-- | RELEASES.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/RELEASES.md b/RELEASES.md index aae2a669650..a9422fa103e 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -156,6 +156,7 @@ Language - [Macro attributes may follow `#[derive]` and will see the original (pre-`cfg`) input.][87220] - [Accept curly-brace macros in expressions, like `m!{ .. }.method()` and `m!{ .. }?`.][88690] - [Allow panicking in constant evaluation.][89508] +- [Ignore derived `Clone` and `Debug` implementations during dead code analysis.][85200] Compiler -------- @@ -216,6 +217,9 @@ Cargo Compatibility notes ------------------- +- [Ignore derived `Clone` and `Debug` implementations during dead code analysis.][85200] + This will break some builds that set `#![deny(dead_code)]`. + Internal changes ---------------- These changes provide no direct user facing benefits, but represent significant @@ -224,6 +228,7 @@ and related tools. - [Added an experimental backend for codegen with `libgccjit`.][87260] +[85200]: https://github.com/rust-lang/rust/pull/85200/ [86191]: https://github.com/rust-lang/rust/pull/86191/ [87220]: https://github.com/rust-lang/rust/pull/87220/ [87260]: https://github.com/rust-lang/rust/pull/87260/ |
