| Age | Commit message (Expand) | Author | Lines |
| 2023-04-25 | Fix lifetime suggestion for type aliases with objects in them | Michael Goulet | -3/+13 |
| 2023-04-25 | Rollup merge of #110556 - kylematsuda:earlybinder-explicit-item-bounds, r=com... | Matthias Krüger | -1/+1 |
| 2023-04-25 | Replace `tcx.mk_trait_ref` with `ty::TraitRef::new` | Maybe Waffle | -10/+17 |
| 2023-04-24 | Split `{Idx, IndexVec, IndexSlice}` into their own modules | Maybe Waffle | -17/+17 |
| 2023-04-23 | Auto merge of #108118 - oli-obk:lazy_typeck, r=cjgillot | bors | -1/+1 |
| 2023-04-22 | Auto merge of #109753 - compiler-errors:replenish-region-constraints, r=aliemjay | bors | -31/+18 |
| 2023-04-22 | Auto merge of #104844 - cjgillot:mention-eval-place, r=jackh726,RalfJung | bors | -5/+7 |
| 2023-04-22 | Auto merge of #106934 - DrMeepster:offset_of, r=WaffleLapkin | bors | -1/+2 |
| 2023-04-21 | Allow `LocalDefId` as the argument to `def_path_str` | Oli Scherer | -1/+1 |
| 2023-04-21 | Evaluate place expression in `PlaceMention`. | Camille GILLOT | -5/+7 |
| 2023-04-21 | offset_of | DrMeepster | -1/+2 |
| 2023-04-21 | Clone region var origins instead of taking in borrowck | Michael Goulet | -31/+18 |
| 2023-04-20 | add EarlyBinder to output of explicit_item_bounds; replace bound_explicit_ite... | Kyle Matsuda | -1/+1 |
| 2023-04-20 | Remove WithOptconstParam. | Camille GILLOT | -57/+41 |
| 2023-04-19 | Extend and use `hir::Node::body_id` | Maybe Waffle | -20/+1 |
| 2023-04-19 | Add suggestion to use a closure arg instead of a capture on bck error | Maybe Waffle | -3/+182 |
| 2023-04-19 | Add `#[track_caller]` to `struct_span_err_with_code` (drive-by cleanup) | Maybe Waffle | -0/+1 |
| 2023-04-19 | Remove useless check (drive-by cleanup) | Maybe Waffle | -15/+1 |
| 2023-04-19 | Auto merge of #110407 - Nilstrieb:fluent-macro, r=davidtwco | bors | -1/+2 |
| 2023-04-18 | Add `rustc_fluent_macro` to decouple fluent from `rustc_macros` | Nilstrieb | -1/+2 |
| 2023-04-17 | Spelling - compiler | Josh Soref | -3/+3 |
| 2023-04-17 | Rollup merge of #110394 - scottmcm:less-idx-new, r=WaffleLapkin | Matthias Krüger | -17/+15 |
| 2023-04-17 | Rollup merge of #104055 - AndyJado:bck_errors, r=davidtwco | Matthias Krüger | -252/+612 |
| 2023-04-16 | Move some utils out of `rustc_const_eval` | Nilstrieb | -7/+46 |
| 2023-04-16 | Various minor Idx-related tweaks | Scott McMurray | -17/+15 |
| 2023-04-15 | fix clippy::{clone_on_copy, useless_conversion} | Matthias Krüger | -1/+1 |
| 2023-04-13 | Remove `ToRegionVid`. | Nicholas Nethercote | -55/+32 |
| 2023-04-13 | Remove `impl ToRegionVid for RegionVid`. | Nicholas Nethercote | -23/+12 |
| 2023-04-13 | Make `Region::as_var` infallible. | Nicholas Nethercote | -15/+4 |
| 2023-04-13 | migrate ftl msg accroding to #103042 | AndyJado | -12/+138 |
| 2023-04-13 | rm var_span_label to var_subdiag & eager subdiag | AndyJado | -240/+474 |
| 2023-04-12 | Auto merge of #110249 - matthiaskrgr:rollup-7iig04q, r=matthiaskrgr | bors | -60/+35 |
| 2023-04-12 | Rollup merge of #110175 - nnethercote:symbol-cleanups, r=jackh726 | Matthias Krüger | -44/+17 |
| 2023-04-12 | Rename `NllVisitor` as `RegionRenumberer`. | Nicholas Nethercote | -6/+6 |
| 2023-04-11 | Add `sym::anon`. | Nicholas Nethercote | -7/+4 |
| 2023-04-11 | Use the existing `static` and `env` symbols instead of interning. | Nicholas Nethercote | -8/+7 |
| 2023-04-11 | Fix `RegionCtxt::preference_value`. | Nicholas Nethercote | -3/+1 |
| 2023-04-11 | Introduce `Region::get_name_or_anon`. | Nicholas Nethercote | -27/+6 |
| 2023-04-11 | Rename a variable. | Nicholas Nethercote | -2/+2 |
| 2023-04-11 | Inline and remove `renumber_regions`. | Nicholas Nethercote | -19/+6 |
| 2023-04-10 | Fix typos in compiler | DaniPopes | -16/+18 |
| 2023-04-07 | Auto merge of #110036 - jackh726:placeholder_boundvar, r=nnethercote | bors | -14/+14 |
| 2023-04-06 | Remove index from BrAnon | Jack Huey | -4/+2 |
| 2023-04-06 | Use BoundTy and BoundRegion instead of kind of PlaceholderTy and PlaceholderR... | Jack Huey | -10/+12 |
| 2023-04-06 | Rename `Abort` terminator to `Terminate` | Gary Guo | -5/+5 |
| 2023-04-06 | Add `UnwindAction::Terminate` | Gary Guo | -2/+6 |
| 2023-04-06 | Add `UnwindAction::Unreachable` | Gary Guo | -24/+23 |
| 2023-04-06 | Refactor unwind from Option to a new enum | Gary Guo | -15/+18 |
| 2023-04-03 | Doc-comment `IndexVec::from_elem` and use it in a few more places | Scott McMurray | -2/+2 |
| 2023-04-02 | Use `&IndexSlice` instead of `&IndexVec` where possible | Scott McMurray | -26/+28 |