| Age | Commit message (Expand) | Author | Lines |
| 2022-07-21 | avoid embedding StabilityLevel::Unstable reason string into metadata multiple... | klensy | -5/+2 |
| 2022-07-20 | Auto merge of #99058 - michaelwoerister:remove-stable-set-and-map, r=nagisa | bors | -1/+1 |
| 2022-07-20 | passes: check implied feature exists | David Wood | -23/+35 |
| 2022-07-20 | passes: improved partial stabilization diagnostic | David Wood | -8/+50 |
| 2022-07-20 | middle: add `implies_by` to `#[unstable]` | David Wood | -0/+1 |
| 2022-07-20 | Use FxIndexMap instead of otherwise unused StableMap for WEAK_ITEMS_REFS. | Michael Woerister | -1/+1 |
| 2022-07-20 | attr/passes: comment -> doc comment | David Wood | -13/+13 |
| 2022-07-19 | Auto merge of #98180 - notriddle:notriddle/rustdoc-fn, r=petrochenkov,Guillau... | bors | -9/+15 |
| 2022-07-19 | Rollup merge of #99401 - TaKO8Ki:avoid-symbol-to-&str-conversions, r=nnethercote | Matthias Krüger | -1/+1 |
| 2022-07-18 | avoid `Symbol` to `&str` conversions | Takayuki Maeda | -1/+1 |
| 2022-07-17 | rustdoc: extend `#[doc(tuple_variadic)]` to fn pointers | Michael Howell | -9/+15 |
| 2022-07-16 | Stabilize `let_chains` | Caio | -1/+1 |
| 2022-07-15 | passes: migrate half of `check_attr` | David Wood | -445/+610 |
| 2022-07-14 | Auto merge of #95956 - yaahc:stable-in-unstable, r=cjgillot | bors | -3/+49 |
| 2022-07-14 | Auto merge of #99231 - Dylan-DPC:rollup-0tl8c0o, r=Dylan-DPC | bors | -2/+11 |
| 2022-07-14 | Rollup merge of #98705 - WaffleLapkin:closure_binder, r=cjgillot | Dylan DPC | -2/+11 |
| 2022-07-14 | Auto merge of #98975 - jyn514:unstable_opts, r=wesleywiser | bors | -5/+5 |
| 2022-07-13 | Rename `debugging_opts` to `unstable_opts` | Joshua Nelson | -5/+5 |
| 2022-07-13 | remove untagged_union feature gate | Ralf Jung | -66/+2 |
| 2022-07-13 | also allow arrays of allowed types | Ralf Jung | -0/+5 |
| 2022-07-13 | allow unions with mutable references and tuples of allowed types | Ralf Jung | -5/+22 |
| 2022-07-13 | factor 'is this type allowed as union field on stable' into separate function | Ralf Jung | -3/+11 |
| 2022-07-13 | Rollup merge of #99011 - oli-obk:UnsoundCell, r=eddyb | Dylan DPC | -19/+2 |
| 2022-07-12 | Add an indirection for closures in `hir::ExprKind` | Maybe Waffle | -2/+11 |
| 2022-07-11 | move else block into the `Local` struct | Ding Xiang Fei | -10/+10 |
| 2022-07-11 | lower let-else in MIR instead | Ding Xiang Fei | -13/+48 |
| 2022-07-08 | fixes post rebase | Jane Losare-Lusby | -1/+1 |
| 2022-07-08 | add opt in attribute for stable-in-unstable items | Jane Lusby | -2/+20 |
| 2022-07-08 | clarify comment | Jane Lusby | -2/+2 |
| 2022-07-08 | update comment | Jane Lusby | -1/+4 |
| 2022-07-08 | Support unstable moves via stable in unstable items | Jane Lusby | -2/+27 |
| 2022-07-07 | Reword comments and rename HIR visiting methods. | Camille GILLOT | -8/+8 |
| 2022-07-07 | `UnsafeCell` now has no niches, ever. | Oli Scherer | -19/+2 |
| 2022-07-07 | Auto merge of #98841 - Kobzol:hir-validator-bitset, r=cjgillot | bors | -19/+22 |
| 2022-07-05 | Rollup merge of #98624 - davidtwco:translation-on-lints, r=compiler-errors | Dylan DPC | -1/+1 |
| 2022-07-04 | Only validate HIR with `debug_assertions` on | Jakub Beránek | -19/+22 |
| 2022-07-04 | Use a bitset instead of a hash map in HIR ID validator | Jakub Beránek | -4/+4 |
| 2022-07-04 | Rollup merge of #98501 - Enselic:err_if_attr_found, r=compiler-errors | Matthias Krüger | -12/+14 |
| 2022-07-01 | Auto merge of #98402 - cjgillot:undead, r=michaelwoerister | bors | -279/+150 |
| 2022-06-30 | middle: translation in `LintDiagnosticBuilder` | David Wood | -1/+1 |
| 2022-06-29 | avoid many `&str` to `String` conversions with `MultiSpan::push_span_label` | Takayuki Maeda | -5/+2 |
| 2022-06-25 | rustc_passes: De-duplicate more code with `fn throw_attr_err()` | Martin Nordholts | -12/+14 |
| 2022-06-24 | Rollup merge of #98394 - Enselic:fixup-rustc_main-renames, r=petrochenkov | Yuki Okushi | -5/+5 |
| 2022-06-24 | Rollup merge of #98214 - petrochenkov:islike, r=compiler-errors | Yuki Okushi | -1/+1 |
| 2022-06-22 | Rewrite dead-code pass to avoid fetching HIR. | Camille GILLOT | -168/+89 |
| 2022-06-22 | Uniform spans in dead code lint. | Camille GILLOT | -96/+52 |
| 2022-06-22 | Simplify match. | Camille GILLOT | -5/+3 |
| 2022-06-22 | Mark inherent impls as using the type during liveness collection. | Camille GILLOT | -25/+21 |
| 2022-06-22 | Fixup missing renames from `#[main]` to `#[rustc_main]` | Martin Nordholts | -5/+5 |
| 2022-06-22 | Auto merge of #97853 - TaKO8Ki:emit-only-one-note-per-unused-struct-field, r=... | bors | -73/+199 |