| Age | Commit message (Expand) | Author | Lines |
| 2022-08-29 | Rename `GenericArg::id` as `GenericArg::hir_id`. | Nicholas Nethercote | -1/+1 |
| 2022-08-29 | Use `&'hir Mod` everywhere. | Nicholas Nethercote | -1/+1 |
| 2022-08-29 | Use `&'hir Ty` everywhere. | Nicholas Nethercote | -2/+2 |
| 2022-08-29 | Use `&'hir Expr` everywhere. | Nicholas Nethercote | -7/+7 |
| 2022-08-29 | Expand the HIR (and AST) size assertions. | Nicholas Nethercote | -11/+27 |
| 2022-08-28 | Remove `register_attr` feature | Yuki Okushi | -8/+2 |
| 2022-08-26 | Merge implementations of HIR fn_decl and fn_sig. | Camille GILLOT | -4/+5 |
| 2022-08-25 | have LangItemError derive everything LangItem does | Nathan Stocks | -0/+1 |
| 2022-08-25 | allow non-monomorphize modules to access hard-coded error message through new... | Nathan Stocks | -3/+14 |
| 2022-08-22 | safe transmute: use `Assume` struct to provide analysis options | Jack Wrenn | -1/+2 |
| 2022-08-18 | Add diagnostic translation lints to crates that don't emit them | 5225225 | -0/+2 |
| 2022-08-16 | Rollup merge of #100610 - nnethercote:ast-and-parser-tweaks, r=spastorino | Dylan DPC | -5/+1 |
| 2022-08-16 | Auto merge of #100237 - cjgillot:no-special-hash-hir, r=nagisa | bors | -18/+3 |
| 2022-08-16 | Remove `{ast,hir}::WhereEqPredicate::id`. | Nicholas Nethercote | -5/+1 |
| 2022-08-11 | Add visitors for PatField and ExprField. | Eric Huss | -10/+20 |
| 2022-08-11 | Check attributes on struct expression fields. | Eric Huss | -0/+4 |
| 2022-08-11 | Check attributes on pattern fields. | Eric Huss | -0/+4 |
| 2022-08-11 | Rollup merge of #100392 - nnethercote:simplify-visitors, r=cjgillot | Matthias Krüger | -41/+10 |
| 2022-08-11 | Simplify `rustc_hir::intravisit::Visitor::visit_enum_def`. | Nicholas Nethercote | -2/+2 |
| 2022-08-11 | Simplify `rustc_hir::intravisit::Visitor::visit_variant_data`. | Nicholas Nethercote | -41/+10 |
| 2022-08-10 | Avoid repeating qualifiers on `static_assert_size` calls. | Nicholas Nethercote | -12/+12 |
| 2022-08-07 | Add Tuple marker trait | Michael Goulet | -0/+2 |
| 2022-08-07 | Derive HashStable for HIR Expr and Ty. | Camille GILLOT | -18/+3 |
| 2022-08-03 | Rollup merge of #100029 - hdelc:master, r=cjgillot | Matthias Krüger | -45/+45 |
| 2022-08-02 | Add items to `DocAliasBadLocation` check error match arm | hdelc | -1/+1 |
| 2022-08-02 | Auto merge of #92268 - jswrenn:transmute, r=oli-obk | bors | -0/+3 |
| 2022-08-02 | Make `Target::name` method pass by copy | hdelc | -3/+3 |
| 2022-08-02 | Refactor `Display` impl for `Target` to `Target::name` method | hdelc | -45/+45 |
| 2022-08-01 | Match on TraitItem exhaustively. | Camille GILLOT | -14/+11 |
| 2022-08-01 | Store associated item defaultness in impl_defaultness. | Camille GILLOT | -10/+17 |
| 2022-08-01 | Rollup merge of #100003 - nnethercote:improve-size-assertions, r=lqd | Matthias Krüger | -13/+14 |
| 2022-08-01 | fix ICE in Definitions::create_def | Goldstein | -1/+6 |
| 2022-08-01 | Improve size assertions. | Nicholas Nethercote | -13/+14 |
| 2022-07-27 | Initial (incomplete) implementation of transmutability trait. | Jack Wrenn | -0/+3 |
| 2022-07-26 | Replace LifetimeRes::Anonymous by LifetimeRes::Infer. | Camille GILLOT | -10/+8 |
| 2022-07-26 | Remove the distinction between LifetimeName::Implicit and LifetimeName::Under... | Camille GILLOT | -14/+3 |
| 2022-07-25 | Auto merge of #97313 - cjgillot:ast-lifetimes-anon, r=petrochenkov | bors | -1/+1 |
| 2022-07-25 | Report elision failures on the AST. | Camille GILLOT | -1/+1 |
| 2022-07-21 | Address more nits | Michael Goulet | -1/+1 |
| 2022-07-21 | Do if-expression obligation stuff less eagerly | Michael Goulet | -0/+10 |
| 2022-07-20 | Introduce AnonymousLifetimeRib::Elided and use it for implied 'static. | Camille GILLOT | -1/+1 |
| 2022-07-20 | Remove unused StableMap and StableSet types from rustc_data_structures | Michael Woerister | -1/+1 |
| 2022-07-20 | Use FxIndexMap instead of otherwise unused StableMap for WEAK_ITEMS_REFS. | Michael Woerister | -6/+6 |
| 2022-07-15 | Rollup merge of #99119 - TaKO8Ki:remove-string-matching-about-methods, r=cjgi... | Dylan DPC | -0/+8 |
| 2022-07-15 | simplify `suggest_deref_ref_or_into` | Takayuki Maeda | -0/+8 |
| 2022-07-14 | Rollup merge of #98705 - WaffleLapkin:closure_binder, r=cjgillot | Dylan DPC | -13/+30 |
| 2022-07-12 | Add back expr size checks | Maybe Waffle | -1/+1 |
| 2022-07-12 | Add an indirection for closures in `hir::ExprKind` | Maybe Waffle | -19/+17 |
| 2022-07-12 | Lower closure binders to hir & properly check them | Maybe Waffle | -2/+21 |
| 2022-07-12 | Comment out expr size check | Maybe Waffle | -1/+1 |