| Age | Commit message (Expand) | Author | Lines |
| 2024-02-22 | Remove dead `expect_error_or_delayed_bug` method. | Nicholas Nethercote | -5/+0 |
| 2024-02-21 | Rollup merge of #121328 - ffmancera:ff/verbose_long_type, r=compiler-errors | Dylan DPC | -1/+1 |
| 2024-02-21 | Rollup merge of #121208 - nnethercote:delayed_bug-to-bug, r=lcnr | Dylan DPC | -2/+1 |
| 2024-02-21 | Convert `bug`s back to `delayed_bug`s. | Nicholas Nethercote | -2/+4 |
| 2024-02-21 | Convert `delayed_bug`s to `bug`s. | Nicholas Nethercote | -6/+3 |
| 2024-02-20 | Rollup merge of #121344 - fmease:lta-constr-by-input, r=oli-obk | Matthias Krüger | -35/+145 |
| 2024-02-20 | Move the peeling function for weak alias types | León Orell Valerian Liehr | -0/+33 |
| 2024-02-20 | Expand weak alias types before collecting constrained and referenced late bou... | León Orell Valerian Liehr | -8/+10 |
| 2024-02-20 | Introduce expand_weak_alias_tys | León Orell Valerian Liehr | -14/+77 |
| 2024-02-20 | Rename some normalization-related items | León Orell Valerian Liehr | -14/+26 |
| 2024-02-20 | Rollup merge of #121167 - petrochenkov:unload2, r=wesleywiser | Nilstrieb | -0/+7 |
| 2024-02-20 | Auto merge of #120576 - nnethercote:merge-Diagnostic-DiagnosticBuilder, r=dav... | bors | -12/+12 |
| 2024-02-20 | Make --verbose imply -Z write-long-types-to-disk=no | Fernando Fernandez Mancera | -1/+1 |
| 2024-02-20 | Rollup merge of #121256 - Jarcho:visitor2, r=oli-obk | Nilstrieb | -40/+33 |
| 2024-02-19 | Prefer `DiagnosticBuilder` over `Diagnostic` in diagnostic modifiers. | Nicholas Nethercote | -12/+12 |
| 2024-02-18 | resolve: Scale back unloading of speculatively loaded crates | Vadim Petrochenkov | -0/+7 |
| 2024-02-18 | Allow AST and HIR visitors to return `ControlFlow` | Jason Newcomb | -40/+33 |
| 2024-02-18 | By tracking import use types to check whether it is scope uses or the other s... | surechen | -1/+1 |
| 2024-02-17 | Rollup merge of #121059 - compiler-errors:extension, r=davidtwco,Nilstrieb | Guillaume Boisseau | -27/+6 |
| 2024-02-16 | Rollup merge of #121179 - RalfJung:zst-mutable-refs, r=oli-obk | Guillaume Gomez | -4/+5 |
| 2024-02-16 | Move trait into attr so it's greppable | Michael Goulet | -6/+6 |
| 2024-02-16 | Use extension trait derive | Michael Goulet | -27/+6 |
| 2024-02-16 | Auto merge of #120500 - oli-obk:intrinsics2.0, r=WaffleLapkin | bors | -7/+14 |
| 2024-02-16 | allow mutable references in const values when they point to no memory | Ralf Jung | -4/+5 |
| 2024-02-16 | Auto merge of #120486 - reitermarkus:use-generic-nonzero, r=dtolnay | bors | -33/+32 |
| 2024-02-16 | Rollup merge of #121146 - compiler-errors:ignore-diverging-arms, r=estebank | Guillaume Gomez | -2/+1 |
| 2024-02-16 | Rollup merge of #121141 - compiler-errors:closure-kind-docs, r=nnethercote | Guillaume Gomez | -11/+26 |
| 2024-02-15 | Fix closure kind docs | Michael Goulet | -11/+26 |
| 2024-02-15 | Remove a suggestion that is redundant | Michael Goulet | -1/+0 |
| 2024-02-15 | Only point out non-diverging arms for match suggestions | Michael Goulet | -1/+1 |
| 2024-02-15 | Auto merge of #120931 - chenyukang:yukang-cleanup-hashmap, r=michaelwoerister | bors | -5/+4 |
| 2024-02-15 | Auto merge of #116564 - oli-obk:evaluated_static_in_metadata, r=RalfJung,cjgi... | bors | -59/+27 |
| 2024-02-15 | Return ConstAllocation from eval_static_initializer query directly | Oli Scherer | -38/+9 |
| 2024-02-15 | Store static initializers in metadata instead of the MIR of statics. | Oli Scherer | -0/+2 |
| 2024-02-15 | Add new query just for static initializers | Oli Scherer | -28/+23 |
| 2024-02-15 | Rollup merge of #121122 - compiler-errors:identical-layouts, r=oli-obk | Matthias Krüger | -2/+4 |
| 2024-02-15 | Rollup merge of #121084 - oli-obk:create_def_forever_red2, r=WaffleLapkin | Matthias Krüger | -13/+17 |
| 2024-02-15 | Replace `NonZero::<_>::new` with `NonZero::new`. | Markus Reiter | -23/+18 |
| 2024-02-15 | Use generic `NonZero` internally. | Markus Reiter | -29/+33 |
| 2024-02-15 | Enforce coroutine-closure layouts are identical | Michael Goulet | -2/+4 |
| 2024-02-14 | Move all the heavy lifting from `TyCtxtAt::create_def` into `TyCtxt::create_def` | Oli Scherer | -13/+17 |
| 2024-02-14 | Rollup merge of #121084 - oli-obk:create_def_forever_red2, r=WaffleLapkin | Guillaume Gomez | -6/+6 |
| 2024-02-14 | Rollup merge of #121083 - GuillaumeGomez:doc-to_opt_closure_kind, r=compiler-... | Guillaume Gomez | -0/+14 |
| 2024-02-14 | Extend documentation for `Ty::to_opt_closure_kind` method | Guillaume Gomez | -0/+14 |
| 2024-02-14 | Make sure `tcx.create_def` also depends on the forever red node, instead of j... | Oli Scherer | -6/+6 |
| 2024-02-14 | Rollup merge of #121049 - estebank:issue-121009, r=fmease | Oli Scherer | -0/+5 |
| 2024-02-14 | Rollup merge of #120498 - compiler-errors:type-flags, r=lcnr | Oli Scherer | -312/+69 |
| 2024-02-14 | clean up potential_query_instability with FxIndexMap and UnordMap | yukang | -5/+4 |
| 2024-02-14 | Auto merge of #121018 - oli-obk:impl_unsafety, r=TaKO8Ki | bors | -0/+1 |
| 2024-02-13 | Do not point at `#[allow(_)]` as the reason for compat lint triggering | Esteban Küber | -0/+5 |