| Age | Commit message (Expand) | Author | Lines |
| 2025-09-09 | erase_regions to erase_and_anonymize_regions | Boxy | -6/+7 |
| 2025-08-15 | Port `#[custom_mir(..)]` to the new attribute system | Sasha Pourcelot | -6/+4 |
| 2025-08-01 | loop match: error on `#[const_continue]` outside `#[loop_match]` | Folkert de Vries | -2/+2 |
| 2025-07-31 | remove rustc_attr_data_structures | Jana Dönszelmann | -1/+2 |
| 2025-07-28 | fix: Reject upvar scrutinees for `loop_match` | Shoyu Vanilla | -7/+14 |
| 2025-07-28 | use let chains in hir, lint, mir | Kivooeo | -30/+26 |
| 2025-07-01 | loop match: run exhaustiveness check | Folkert de Vries | -2/+5 |
| 2025-06-24 | Rollup merge of #138780 - trifectatechfoundation:loop_match_attr, r=oli-obk,t... | Jubilee | -22/+121 |
| 2025-06-23 | Add `#[loop_match]` for improved DFA codegen | bjorn3 | -22/+121 |
| 2025-06-15 | Move the place in `&pin mut $place` when `!Unpin` to ensure soundness | Frank King | -7/+31 |
| 2025-06-15 | Implement pinned borrows, part of `pin_ergonomics` | Frank King | -0/+25 |
| 2025-06-06 | Rollup merge of #142047 - cuviper:s390x-stack, r=oli-obk | Matthias Krüger | -1/+4 |
| 2025-06-05 | Replace some `Option<Span>` with `Span` and use DUMMY_SP instead of None | Oli Scherer | -2/+2 |
| 2025-06-04 | Ensure stack in `ThirBuildCx::mirror_exprs` | Josh Stone | -1/+4 |
| 2025-05-23 | Properly analyze captures from unsafe binders | Michael Goulet | -0/+3 |
| 2025-05-21 | lower bodies' params to thir before the body's value | dianne | -1/+2 |
| 2025-04-17 | Replace infallible `name_or_empty` methods with fallible `name` methods. | Nicholas Nethercote | -1/+1 |
| 2025-04-14 | Use `newtype_index!`-generated types more idiomatically | Yotam Ofek | -2/+2 |
| 2025-04-03 | Tighten up assignment operator representations. | Nicholas Nethercote | -2/+17 |
| 2025-03-12 | Rollup merge of #137504 - nnethercote:remove-Map-4, r=Zalathar | Manish Goregaokar | -4/+3 |
| 2025-03-12 | Move methods from `Map` to `TyCtxt`, part 4. | Nicholas Nethercote | -4/+3 |
| 2025-03-09 | Explain weird quirk in user type annotation lowering | Michael Goulet | -1/+1 |
| 2025-03-06 | Generate the right MIR for by use closures | Santiago Pastorino | -1/+12 |
| 2025-03-06 | Implement .use keyword as an alias of clone | Santiago Pastorino | -0/+4 |
| 2025-02-26 | Handle asm const similar to inline const | Gary Guo | -6/+14 |
| 2025-02-23 | Rollup merge of #137334 - compiler-errors:edition-2024-fresh-2, r=saethlin,tr... | Jacob Pratt | -3/+3 |
| 2025-02-23 | Rollup merge of #137180 - compiler-errors:sym-regions, r=oli-obk | Matthias Krüger | -24/+25 |
| 2025-02-22 | Greatly simplify lifetime captures in edition 2024 | Michael Goulet | -3/+3 |
| 2025-02-22 | Fix binding mode problems | Michael Goulet | -3/+1 |
| 2025-02-22 | Make a fake body to store typeck results for global_asm | Michael Goulet | -24/+25 |
| 2025-02-18 | Remove scrutinee_hir_id from ExprKind::Match | bjorn3 | -1/+0 |
| 2025-02-18 | Move methods from `Map` to `TyCtxt`, part 2. | Nicholas Nethercote | -4/+3 |
| 2025-02-08 | Rustfmt | bjorn3 | -5/+3 |
| 2025-02-04 | Rename `thir::cx::Cx` to `ThirBuildCx` | Zalathar | -9/+12 |
| 2025-02-04 | Remove helper trait `UserAnnotatedTyHelpers` | Zalathar | -54/+42 |
| 2025-01-31 | Implement MIR, CTFE, and codegen for unsafe binders | Michael Goulet | -2/+14 |
| 2025-01-03 | turn rustc_box into an intrinsic | Ralf Jung | -39/+18 |
| 2024-12-19 | Rename Scope.id to Scope.local_id, remove trivial accessor | Michael Goulet | -9/+15 |
| 2024-12-17 | Rollup merge of #134400 - spastorino:fix-some-comments, r=compiler-errors | Jacob Pratt | -1/+1 |
| 2024-12-16 | Adjust upvar.rs file path | Santiago Pastorino | -1/+1 |
| 2024-12-16 | Rollup merge of #134197 - Enselic:mirror, r=lcnr | Matthias Krüger | -0/+8 |
| 2024-12-14 | Split UserTypeAnnotation to have a kind | Michael Goulet | -2/+3 |
| 2024-12-13 | rustc_mir_build: Clarify that 'mirrored' does not mean 'flipped' or 'reversed' | Martin Nordholts | -0/+8 |
| 2024-12-12 | Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators | Michael Goulet | -0/+5 |
| 2024-12-09 | Introduce `default_field_values` feature | Esteban Küber | -12/+42 |
| 2024-11-23 | thir building: use typing_env directly | lcnr | -17/+7 |
| 2024-11-20 | reduce false positives of tail-expr-drop-order from consumed values | Ding Xiang Fei | -22/+47 |
| 2024-11-19 | pattern lowering, yeet `TypingEnv::from_param_env` | lcnr | -1/+1 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -4/+15 |
| 2024-11-05 | Auto merge of #132580 - compiler-errors:globs, r=Noratrieb | bors | -3/+3 |