| Age | Commit message (Expand) | Author | Lines |
| 2025-01-29 | Eliminate PatKind::Path | Oli Scherer | -3/+0 |
| 2025-01-23 | Split hir `TyKind` and `ConstArgKind` in two and update `hir::Visitor` | Boxy | -4/+4 |
| 2025-01-23 | Make `hir::TyKind::TraitObject` use tagged ptr | Boxy | -2/+3 |
| 2025-01-15 | Treat safe target_feature functions as unsafe by default | Oli Scherer | -0/+4 |
| 2025-01-14 | Add hir::HeaderSafety to make follow up commits simpler | Oli Scherer | -2/+6 |
| 2025-01-08 | Rename PatKind::Lit to Expr | Oli Scherer | -1/+1 |
| 2025-01-08 | Exhaustively handle expressions in patterns | Oli Scherer | -3/+17 |
| 2025-01-07 | Rollup merge of #134989 - max-niederman:guard-patterns-hir, r=oli-obk | Matthias Krüger | -0/+6 |
| 2025-01-04 | turn hir::ItemKind::Fn into a named-field variant | Ralf Jung | -1/+1 |
| 2024-12-31 | add guard patterns to HIR and implement lowering | Max Niederman | -0/+6 |
| 2024-12-20 | Support pretty-printing dyn* trait objects | David Tolnay | -2/+4 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -2/+1 |
| 2024-12-15 | Remove some leftover dead code | Jonathan Dönszelmann | -0/+6 |
| 2024-12-15 | Add hir::Attribute | Jonathan Dönszelmann | -7/+107 |
| 2024-12-14 | (Re-)Implement impl_trait_in_bindings | Michael Goulet | -0/+3 |
| 2024-12-12 | Add unwrap_unsafe_binder and wrap_unsafe_binder macro operators | Michael Goulet | -0/+13 |
| 2024-12-12 | Lower AST and resolve lifetimes for unsafe binder types | Michael Goulet | -0/+12 |
| 2024-12-10 | Remove more traces of anonymous ADTs | Michael Goulet | -1/+0 |
| 2024-12-09 | Introduce `default_field_values` feature | Esteban Küber | -11/+25 |
| 2024-12-02 | Rollup merge of #133603 - dtolnay:precedence, r=lcnr | Guillaume Gomez | -37/+35 |
| 2024-12-01 | Rollup merge of #133589 - voidc:remove-array-len, r=boxyuwu | Jacob Pratt | -11/+4 |
| 2024-11-30 | Eliminate magic numbers from expression precedence | David Tolnay | -20/+17 |
| 2024-11-30 | Eliminate PREC_FORCE_PAREN | David Tolnay | -4/+4 |
| 2024-11-30 | Eliminate precedence arithmetic from rustc_hir_pretty | David Tolnay | -15/+16 |
| 2024-11-30 | Remove hir::ArrayLen, introduce ConstArgKind::Infer | Dominik Stolz | -11/+4 |
| 2024-11-29 | Eliminate rustc_hir_pretty's print_expr_maybe_paren | David Tolnay | -21/+17 |
| 2024-11-26 | Rollup merge of #133140 - dtolnay:precedence, r=fmease | Michael Goulet | -2/+2 |
| 2024-11-25 | Refactor `where` predicates, and reserve for attributes support | Frank King | -41/+40 |
| 2024-11-17 | Inline ExprPrecedence::order into Expr::precedence | David Tolnay | -2/+2 |
| 2024-10-30 | compiler: Switch to rustc_abi in hir_pretty, lint_defs, and mir_build | Jubilee Young | -4/+4 |
| 2024-10-30 | Remap impl-trait lifetimes on HIR instead of AST lowering. | Camille GILLOT | -2/+0 |
| 2024-10-24 | Remove associated type based effects logic | Michael Goulet | -1/+1 |
| 2024-10-22 | Represent TraitBoundModifiers as distinct parts in HIR | Michael Goulet | -4/+10 |
| 2024-10-14 | Move trait bound modifiers into hir::PolyTraitRef | Michael Goulet | -8/+6 |
| 2024-10-04 | rm `ItemKind::OpaqueTy` | Noah Lev | -5/+10 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -9/+6 |
| 2024-08-27 | Add `warn(unreachable_pub)` to `rustc_hir_pretty`. | Nicholas Nethercote | -0/+1 |
| 2024-08-16 | Use FnSig instead of raw FnDecl for ForeignItemKind::Fn | Michael Goulet | -8/+3 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -5/+4 |
| 2024-07-26 | Auto merge of #121676 - Bryanskiy:polarity, r=petrochenkov | bors | -1/+4 |
| 2024-07-25 | Support ?Trait bounds in supertraits and dyn Trait under a feature gate | Bryanskiy | -1/+4 |
| 2024-07-25 | Rollup merge of #128138 - folkertdev:asm-option-allowlist, r=lcnr | Matthias Krüger | -29/+1 |
| 2024-07-24 | centralize turning asm flags into human readable names | Folkert | -29/+1 |
| 2024-07-17 | Remove some unintended changes to imports | Noah Lev | -3/+4 |
| 2024-07-16 | Add `ConstArgKind::Path` and make `ConstArg` its own HIR node | Noah Lev | -0/+2 |
| 2024-07-16 | Use `ConstArg` for const param defaults | Noah Lev | -1/+1 |
| 2024-07-16 | Use `ConstArg` for array lengths | Noah Lev | -1/+1 |
| 2024-07-16 | Use `ConstArg` for assoc item constraints | Noah Lev | -1/+1 |
| 2024-07-16 | hir: Create `hir::ConstArgKind` enum | Noah Lev | -2/+8 |
| 2024-06-28 | implement new effects desugaring | Deadbeef | -1/+6 |