| Age | Commit message (Expand) | Author | Lines |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -72/+87 |
| 2024-03-08 | Auto merge of #120268 - DianQK:otherwise_is_last_variant_switchs, r=oli-obk | bors | -2/+36 |
| 2024-03-08 | Rename some functions to represent their generalized behavior | Michael Goulet | -10/+10 |
| 2024-03-08 | Make TAITs capture all higher-ranked lifetimes in scope | Michael Goulet | -12/+0 |
| 2024-03-08 | Update MIR with `MirPatch` in `UninhabitedEnumBranching` | DianQK | -2/+25 |
| 2024-03-07 | Rollup merge of #122141 - klensy:sync-me, r=lcnr | Guillaume Gomez | -2/+4 |
| 2024-03-07 | Rollup merge of #121089 - oli-obk:create_def_feed, r=petrochenkov | Guillaume Gomez | -8/+72 |
| 2024-03-07 | Replace the default branch with an unreachable branch If it is the last variant | DianQK | -0/+11 |
| 2024-03-07 | sync (try_)instantiate_mir_and_normalize_erasing_regions implementation | klensy | -2/+4 |
| 2024-03-07 | Merge collect_mod_item_types query into check_well_formed | Oli Scherer | -4/+22 |
| 2024-03-07 | Apply `EarlyBinder` only to `TraitRef` in `ImplTraitHeader` | Yoshitomo Nakanishi | -12/+14 |
| 2024-03-07 | Merge `check_mod_impl_wf` and `check_mod_type_wf` | Oli Scherer | -5/+0 |
| 2024-03-07 | Auto merge of #122113 - matthiaskrgr:rollup-5d1jnwi, r=matthiaskrgr | bors | -2/+2 |
| 2024-03-06 | Rollup merge of #122027 - compiler-errors:rpitit-cycle, r=spastorino | Matthias Krüger | -2/+2 |
| 2024-03-06 | Rollup merge of #121382 - nnethercote:rework-untranslatable_diagnostic-lint, ... | Matthias Krüger | -3/+4 |
| 2024-03-06 | Add a profiler reference to `GraphEncoder` | John Kåre Alsaker | -1/+1 |
| 2024-03-06 | Auto merge of #122045 - matthiaskrgr:rollup-5l3vpn7, r=matthiaskrgr | bors | -8/+33 |
| 2024-03-06 | Auto merge of #122041 - matthiaskrgr:rollup-imsmdke, r=matthiaskrgr | bors | -9/+0 |
| 2024-03-05 | Convert `TypeVisitor` and `DefIdVisitor` to use `VisitorResult` | Jason Newcomb | -116/+75 |
| 2024-03-05 | Move visitor utils to `rustc_ast_ir` | Jason Newcomb | -2/+1 |
| 2024-03-05 | Merge `impl_trait_in_assoc_types_defined_by` query back into `opaque_types_de... | Oli Scherer | -9/+0 |
| 2024-03-05 | Uplift some feeding out of associated_type_for_impl_trait_in_impl and into qu... | Michael Goulet | -2/+2 |
| 2024-03-05 | only set noalias on Box with the global allocator | Ralf Jung | -8/+33 |
| 2024-03-05 | Avoid using feed_unit_query from within queries | Oli Scherer | -3/+7 |
| 2024-03-05 | Remove a use of feed_local_crate and make it fail if used within queries | Oli Scherer | -1/+8 |
| 2024-03-05 | Change message type in bug functions. | Nicholas Nethercote | -3/+4 |
| 2024-03-05 | Prevent feeding `CRATE_DEF_ID` queries outside the resolver | Oli Scherer | -2/+10 |
| 2024-03-05 | Prevent leaking `Feed`s into query results | Oli Scherer | -0/+8 |
| 2024-03-05 | Get rid of `feed_local_def_id` | Oli Scherer | -4/+5 |
| 2024-03-05 | Keep `TyCtxtFeed` around longer in the resolver | Oli Scherer | -1/+37 |
| 2024-03-05 | Avoid invoking the `intrinsic` query for DefKinds other than `Fn` or `AssocFn` | Oli Scherer | -7/+11 |
| 2024-03-05 | Auto merge of #121780 - nnethercote:diag-renaming2, r=davidtwco | bors | -26/+20 |
| 2024-03-05 | Rename `BuiltinLintDiagnostics` as `BuiltinLintDiag`. | Nicholas Nethercote | -2/+2 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -24/+18 |
| 2024-03-05 | Auto merge of #120675 - oli-obk:intrinsics3.0, r=pnkfelix | bors | -6/+33 |
| 2024-03-04 | Rollup merge of #121969 - nnethercote:ParseSess-cleanups, r=wesleywiser | Matthias Krüger | -1/+1 |
| 2024-03-05 | Rename all `ParseSess` variables/fields/lifetimes as `psess`. | Nicholas Nethercote | -1/+1 |
| 2024-03-04 | make `intrinsic` query legal for any `DefId` | Oli Scherer | -0/+4 |
| 2024-03-04 | Add a scheme for moving away from `extern "rust-intrinsic"` entirely | Oli Scherer | -1/+6 |
| 2024-03-04 | Return a struct from `query intrinsic` to be able to add another field in the... | Oli Scherer | -7/+14 |
| 2024-03-04 | Add `is_intrinsic` helper | Oli Scherer | -0/+11 |
| 2024-03-04 | Allow a way to add constructors for rustc_type_ir types | Michael Goulet | -22/+27 |
| 2024-03-04 | Rollup merge of #121927 - Zoxc:print-no-query, r=estebank | Matthias Krüger | -8/+18 |
| 2024-03-03 | Add a proper `with_no_queries` to printing | John Kåre Alsaker | -8/+18 |
| 2024-03-03 | Rollup merge of #121917 - GuillaumeGomez:pattern-complexity_limit.rs, r=Nadri... | Guillaume Gomez | -2/+9 |
| 2024-03-03 | Add new `pattern_complexity` attribute to add possibility to limit and check ... | Guillaume Gomez | -2/+9 |
| 2024-03-02 | Rollup merge of #121841 - tgross35:f16-f128-step2-intrinsics, r=compiler-errors | Guillaume Boisseau | -0/+2 |
| 2024-03-01 | Rollup merge of #121497 - lcnr:coherence-suggest-increasing-recursion-limit, ... | Matthias Krüger | -10/+20 |
| 2024-03-01 | Add `f16` and `f128` to the AST | Trevor Gross | -0/+2 |
| 2024-03-01 | Rollup merge of #121416 - veera-sivarajan:bugfix-120785, r=nnethercote | Matthias Krüger | -0/+24 |