| Age | Commit message (Expand) | Author | Lines |
| 2022-12-28 | Rename `Rptr` to `Ref` in AST and HIR | Nilstrieb | -2/+2 |
| 2022-12-25 | fix more clippy::style findings | Matthias Krüger | -3/+1 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -26/+18 |
| 2022-12-20 | Auto merge of #105880 - Nilstrieb:make-newtypes-less-not-rust, r=oli-obk | bors | -6/+4 |
| 2022-12-19 | Rollup merge of #105864 - matthiaskrgr:compl, r=Nilstrieb | Dylan DPC | -1/+0 |
| 2022-12-19 | clippy::complexity fixes | Matthias Krüger | -1/+0 |
| 2022-12-18 | A few small cleanups for `newtype_index` | Nilstrieb | -4/+2 |
| 2022-12-18 | Make `#[debug_format]` an attribute in `newtype_index` | Nilstrieb | -2/+2 |
| 2022-12-18 | Rollup merge of #105875 - matthiaskrgr:needless_borrowed_reference, r=oli-obk | Matthias Krüger | -2/+2 |
| 2022-12-18 | don't restuct references just to reborrow | Matthias Krüger | -2/+2 |
| 2022-12-18 | avoid .into() conversion to identical types | Matthias Krüger | -2/+0 |
| 2022-12-07 | Rollup merge of #105267 - compiler-errors:issue-104613, r=oli-obk | Matthias Krüger | -3/+3 |
| 2022-12-06 | Rollup merge of #105174 - chenyukang:yukang/fix-105028-unused, r=eholk | Matthias Krüger | -1/+7 |
| 2022-12-04 | drive-by: move field_index to typeck results | Michael Goulet | -3/+3 |
| 2022-12-01 | rustc_hir: Change representation of import paths to support multiple resolutions | Vadim Petrochenkov | -1/+1 |
| 2022-12-01 | rustc_hir: Relax lifetime requirements on `Visitor::visit_path` | Vadim Petrochenkov | -5/+5 |
| 2022-12-01 | fix #105028, Only suggest removing struct field from destructive binding in s... | yukang | -1/+7 |
| 2022-11-29 | Rollup merge of #105023 - tmiasko:asm-sym-static-reachable, r=wesleywiser | Matthias Krüger | -0/+11 |
| 2022-11-29 | Auto merge of #104947 - cjgillot:verify-hir-nest, r=oli-obk | bors | -24/+51 |
| 2022-11-28 | Statics used in reachable function's inline asm are reachable | Tomasz Miąsko | -0/+11 |
| 2022-11-28 | Rename `NestedMetaItem::[Ll]iteral` as `NestedMetaItem::[Ll]it`. | Nicholas Nethercote | -6/+3 |
| 2022-11-28 | Rename `ast::Lit` as `ast::MetaItemLit`. | Nicholas Nethercote | -2/+5 |
| 2022-11-26 | Verify that HIR parenting and Def parenting match. | Camille GILLOT | -24/+51 |
| 2022-11-24 | Auto merge of #104507 - WaffleLapkin:asderefsyou, r=wesleywiser | bors | -5/+4 |
| 2022-11-20 | Change to Ty::is_inhabited_from | Cameron Steffen | -13/+12 |
| 2022-11-18 | couple of clippy::perf fixes | Matthias Krüger | -2/+2 |
| 2022-11-17 | Auto merge of #104170 - cjgillot:hir-def-id, r=fee1-dead | bors | -41/+22 |
| 2022-11-16 | Use `as_deref` in compiler (but only where it makes sense) | Maybe Waffle | -5/+4 |
| 2022-11-13 | Rollup merge of #104320 - fee1-dead-contrib:use-derive-const-in-std, r=oli-obk | Matthias Krüger | -0/+8 |
| 2022-11-13 | Store a LocalDefId in hir::Variant & hir::Field. | Camille GILLOT | -20/+16 |
| 2022-11-13 | Store a LocalDefId in hir::GenericParam. | Camille GILLOT | -3/+2 |
| 2022-11-13 | Store LocalDefId in hir::Closure. | Camille GILLOT | -6/+4 |
| 2022-11-13 | Ensure codegen_fn_attrs during collection. | Camille GILLOT | -12/+0 |
| 2022-11-12 | Auto merge of #103812 - clubby789:improve-include-bytes, r=petrochenkov | bors | -1/+2 |
| 2022-11-12 | Use `derive_const` and rm manual StructuralEq impl | Deadbeef | -0/+8 |
| 2022-11-12 | Rollup merge of #103970 - oli-obk:unhide_unknown_spans, r=estebank | Dylan DPC | -13/+45 |
| 2022-11-11 | Introduce `ExprKind::IncludedBytes` | clubby789 | -1/+2 |
| 2022-11-11 | Print all labels, even if they have no span. Fall back to main item's span. | Oli Scherer | -13/+45 |
| 2022-11-10 | Consider `#[must_use]` annotation on `async fn` as also affecting the `Future... | Esteban Küber | -12/+2 |
| 2022-11-09 | DiagnosticBuilder -> Diagnostic | Michael Goulet | -1/+2 |
| 2022-11-06 | Auto merge of #103720 - crlf0710:most_translation_attr, r=compiler-errors | bors | -2/+0 |
| 2022-11-05 | Specify that `break` cannot be used outside of loop *or* labeled block | clubby789 | -1/+2 |
| 2022-11-04 | Rollup merge of #103397 - crlf0710:port_dead_code_lint, r=davidtwco | Matthias Krüger | -92/+143 |
| 2022-11-04 | Use `derive(Subdiagnostic)` for `ChangeFieldsToBeOfUnitType`. | Charles Lew | -23/+3 |
| 2022-11-01 | Rollup merge of #103575 - Xiretza:suggestions-style-attr, r=davidtwco | Manish Goregaokar | -1/+1 |
| 2022-11-01 | Auto merge of #103217 - mejrs:track, r=eholk | bors | -0/+5 |
| 2022-10-31 | Rewrite implementation of `#[alloc_error_handler]` | Amanieu d'Antras | -22/+1 |
| 2022-10-31 | Add more track_caller | mejrs | -0/+5 |
| 2022-10-29 | Simplify lang item groups | Cameron Steffen | -3/+0 |
| 2022-10-29 | Cleanup weak lang items | Cameron Steffen | -6/+6 |