| Age | Commit message (Expand) | Author | Lines |
| 2024-04-25 | ast: Generalize item kind visiting | Vadim Petrochenkov | -1/+1 |
| 2024-04-23 | Rollup merge of #124218 - Xiretza:subsubdiagnostics, r=davidtwco | León Orell Valerian Liehr | -1/+1 |
| 2024-04-23 | Rollup merge of #124067 - RalfJung:weak-lang-items, r=davidtwco | Matthias Krüger | -12/+50 |
| 2024-04-22 | Stabilize generic `NonZero`. | Markus Reiter | -1/+0 |
| 2024-04-21 | Pass translation closure to add_to_diag_with() as reference | Xiretza | -1/+1 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -2/+1 |
| 2024-04-17 | consistency rename: language item -> lang item | Ralf Jung | -9/+9 |
| 2024-04-17 | weak lang items are not allowed to be #[track_caller] | Ralf Jung | -4/+42 |
| 2024-04-16 | Avoid lots of `hir::HirId{,Map,Set}` qualifiers. | Nicholas Nethercote | -7/+7 |
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -0/+4 |
| 2024-04-08 | Thread pattern types through the HIR | Oli Scherer | -0/+1 |
| 2024-04-08 | Add pattern types to ast | Oli Scherer | -0/+1 |
| 2024-04-06 | Do not ICE on field access check on expr with `ty::Error` | Esteban Küber | -1/+2 |
| 2024-03-29 | Auto merge of #122450 - Urgau:simplify-trim-paths-feature, r=michaelwoerister | bors | -4/+9 |
| 2024-03-28 | Make local_crate_source_file return a RealFileName | Urgau | -4/+9 |
| 2024-03-28 | Rollup merge of #123063 - tmiasko:reachability-abi, r=michaelwoerister | Matthias Krüger | -12/+1 |
| 2024-03-25 | Rollup merge of #122769 - RalfJung:reachable, r=tmiasko | Jubilee | -23/+49 |
| 2024-03-25 | extend doc comment for reachability set computation | Ralf Jung | -23/+49 |
| 2024-03-25 | Function ABI is irrelevant for reachability | Tomasz Miąsko | -12/+1 |
| 2024-03-23 | Rollup merge of #122780 - GuillaumeGomez:rename-hir-local, r=oli-obk | Matthias Krüger | -3/+3 |
| 2024-03-23 | Auto merge of #119552 - krtab:dead_code_priv_mod_pub_field, r=cjgillot,saethlin | bors | -2/+3 |
| 2024-03-22 | Rename `hir::Local` into `hir::LetStmt` | Guillaume Gomez | -3/+3 |
| 2024-03-22 | Rollup merge of #121619 - RossSmyth:pfix_match, r=petrochenkov | Matthias Krüger | -1/+1 |
| 2024-03-21 | Rollup merge of #122793 - compiler-errors:deref-pat-syntax, r=Nadrieril | Matthias Krüger | -0/+2 |
| 2024-03-21 | Implement macro-based deref!() syntax for deref patterns | Michael Goulet | -0/+2 |
| 2024-03-21 | rename items -> free_items | Ralf Jung | -3/+3 |
| 2024-03-19 | Rollup merge of #122719 - oli-obk:nested_static_feed_hir, r=fee1-dead | Matthias Krüger | -1/+1 |
| 2024-03-19 | Auto merge of #122021 - oli-obk:delangitemification, r=compiler-errors | bors | -7/+1 |
| 2024-03-19 | The AssocOpaqueTy HIR node is not actually needed to differentiate from other... | Oli Scherer | -1/+1 |
| 2024-03-18 | Rollup merge of #122158 - estebank:feature-sugg, r=WaffleLapkin | Matthias Krüger | -10/+5 |
| 2024-03-18 | Rollup merge of #122060 - clubby789:stabilize-imported-main, r=lcnr | Matthias Krüger | -11/+0 |
| 2024-03-18 | Use `hir::Node` helper methods instead of repeat the same impl multiple times | Oli Scherer | -7/+1 |
| 2024-03-18 | Provide structured suggestion for `#![feature(foo)]` | Esteban Küber | -10/+5 |
| 2024-03-16 | Auto merge of #122371 - oli-obk:visit_nested_body, r=tmiasko | bors | -39/+80 |
| 2024-03-15 | Rollup merge of #122513 - petrochenkov:somehir4, r=fmease | Guillaume Gomez | -47/+40 |
| 2024-03-14 | hir: Remove `opt_local_def_id_to_hir_id` and `opt_hir_node_by_def_id` | Vadim Petrochenkov | -47/+40 |
| 2024-03-14 | Rollup merge of #122487 - GuillaumeGomez:rename-stmtkind-local, r=oli-obk | Matthias Krüger | -5/+5 |
| 2024-03-14 | Test and implement reachability for trait objects and generic parameters of f... | Oli Scherer | -4/+32 |
| 2024-03-14 | Stop walking the bodies of statics for reachability, and evaluate them instead | Oli Scherer | -38/+51 |
| 2024-03-14 | Rename `hir::StmtKind::Local` into `hir::StmtKind::Let` | Guillaume Gomez | -4/+4 |
| 2024-03-14 | Rename `ast::StmtKind::Local` into `ast::StmtKind::Let` | Guillaume Gomez | -1/+1 |
| 2024-03-13 | Create some minimal HIR for associated opaque types | Vadim Petrochenkov | -1/+2 |
| 2024-03-12 | Replace visibility test with reachability test in dead code detection | Arthur Carcano | -2/+3 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -1/+38 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -3/+3 |
| 2024-03-11 | Auto merge of #121752 - mu001999:dead_code/improve, r=pnkfelix | bors | -11/+85 |
| 2024-03-11 | Auto merge of #122132 - nnethercote:diag-renaming3, r=nnethercote | bors | -18/+18 |
| 2024-03-11 | Rename `AddToDiagnostic` as `Subdiagnostic`. | Nicholas Nethercote | -4/+4 |
| 2024-03-11 | Rename `IntoDiagnostic` as `Diagnostic`. | Nicholas Nethercote | -12/+12 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -4/+4 |