| Age | Commit message (Expand) | Author | Lines |
| 2023-04-06 | Add `UnwindAction::Terminate` | Gary Guo | -1/+5 |
| 2023-04-06 | Refactor unwind from Option to a new enum | Gary Guo | -5/+12 |
| 2023-04-02 | Auto merge of #109849 - scottmcm:more-fieldidx-rebase, r=oli-obk | bors | -14/+10 |
| 2023-04-01 | Use `FieldIdx` in various things related to aggregates | Scott McMurray | -14/+10 |
| 2023-04-01 | use and_then/flat_map for map().flatten() | Matthias Krüger | -3/+3 |
| 2023-03-30 | Update `ty::VariantDef` to use `IndexVec<FieldIdx, FieldDef>` | Scott McMurray | -1/+1 |
| 2023-03-28 | Move `mir::Field` → `abi::FieldIdx` | Scott McMurray | -5/+7 |
| 2023-03-27 | Bless tidy | Maybe Waffle | -1/+1 |
| 2023-03-25 | Refactor: `VariantIdx::from_u32(0)` -> `FIRST_VARIANT` | Scott McMurray | -4/+2 |
| 2023-03-22 | Generate simpler MIR for shifts | Scott McMurray | -23/+33 |
| 2023-03-18 | address review comments | Joshua Nelson | -12/+35 |
| 2023-03-16 | Auto merge of #108944 - cjgillot:clear-local-info, r=oli-obk | bors | -32/+34 |
| 2023-03-15 | Auto merge of #108282 - cjgillot:mir-checked-sh, r=tmiasko | bors | -22/+63 |
| 2023-03-14 | Make is_block_tail a variant of LocalInfo. | Camille GILLOT | -16/+18 |
| 2023-03-14 | Wrap the whole LocalInfo in ClearCrossCrate. | Camille GILLOT | -24/+24 |
| 2023-03-05 | Auto merge of #107844 - Zeegomo:no-drop-and-rep, r=cjgillot | bors | -1/+1 |
| 2023-03-03 | Desugars drop and replace at MIR build | Giacomo Pasini | -1/+1 |
| 2023-03-03 | Match end user facing unmatched backticks in compiler/ | est31 | -1/+1 |
| 2023-02-28 | Remove the `capture_disjoint_fields` feature | clubby789 | -6/+5 |
| 2023-02-27 | Implement checked Shl/Shr at MIR building. | Camille GILLOT | -22/+63 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -6/+6 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -1/+1 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -1/+1 |
| 2023-02-02 | Put a DefId in AggregateKind. | Camille GILLOT | -2/+6 |
| 2023-01-30 | Use `Mutability::{is_mut, is_not}` | Maybe Waffle | -1/+1 |
| 2023-01-20 | Auto merge of #106090 - WaffleLapkin:dereffffffffff, r=Nilstrieb | bors | -5/+5 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -2/+2 |
| 2023-01-17 | tidy | Waffle Maybe | -1/+1 |
| 2023-01-17 | Don't call closures immediately, use `try{}` blocks | Maybe Waffle | -5/+5 |
| 2022-12-24 | Rollup merge of #105975 - jeremystucki:rustc-remove-needless-lifetimes, r=eholk | Matthias Krüger | -2/+2 |
| 2022-12-22 | Fix the issue number in comment for as_local_call_operand | Tomasz Miąsko | -1/+1 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -2/+2 |
| 2022-12-20 | Some style nits | Oli Scherer | -2/+2 |
| 2022-12-19 | Revert "Auto merge of #103880 - b-naber:field-ty-mir, r=lcnr" | Rémy Rakic | -300/+72 |
| 2022-12-18 | avoid .into() conversion to identical types | Matthias Krüger | -1/+1 |
| 2022-12-16 | Auto merge of #103880 - b-naber:field-ty-mir, r=lcnr | bors | -72/+300 |
| 2022-12-14 | address review | b-naber | -87/+50 |
| 2022-12-14 | Remove one more usage of `mk_substs_trait` | Oli Scherer | -1/+1 |
| 2022-12-12 | Rollup merge of #105615 - WaffleLapkin:remove_opt_scope_span_mention, r=compi... | Matthias Krüger | -4/+2 |
| 2022-12-12 | Fixup method doc that mentions removed param | Maybe Waffle | -4/+2 |
| 2022-12-12 | Auto merge of #105160 - nnethercote:rm-Lit-token_lit, r=petrochenkov | bors | -2/+2 |
| 2022-12-09 | Remove unneeded field from `SwitchTargets` | Jakob Degen | -1/+1 |
| 2022-12-02 | Add `StrStyle` to `ast::LitKind::ByteStr`. | Nicholas Nethercote | -2/+2 |
| 2022-11-29 | Support most constant kinds in custom mir | Jakob Degen | -66/+71 |
| 2022-11-29 | reduce allocations | b-naber | -38/+111 |
| 2022-11-28 | Simplify calls to `tcx.mk_const` | Maybe Waffle | -1/+1 |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -14/+14 |
| 2022-11-23 | use no type in ProjectionElem::Field for PlaceBuilder::UpVar | b-naber | -34/+62 |
| 2022-11-23 | include closures and generators in try_compute_field_ty | b-naber | -3/+39 |
| 2022-11-23 | get field ty during projecting | b-naber | -98/+181 |