| Age | Commit message (Expand) | Author | Lines |
| 2023-12-05 | Remove `#[rustc_host]`, use internal desugaring | Deadbeef | -49/+18 |
| 2023-12-04 | Address code review feedback | Eric Holk | -10/+10 |
| 2023-12-04 | Fix some broken tests | Eric Holk | -1/+1 |
| 2023-12-04 | Option<CoroutineKind> | Eric Holk | -43/+23 |
| 2023-12-04 | Merge Async and Gen into CoroutineKind | Eric Holk | -124/+93 |
| 2023-12-04 | Lower return types for gen fn to impl Iterator | Eric Holk | -72/+158 |
| 2023-12-03 | rustc: Harmonize `DefKind` and `DefPathData` | Vadim Petrochenkov | -25/+17 |
| 2023-12-03 | Disallow arm bodies on never patterns | Nadrieril | -8/+22 |
| 2023-12-03 | Disallow guards on never patterns | Nadrieril | -2/+13 |
| 2023-12-03 | Disallow an arm without a body (except for never patterns) | Nadrieril | -3/+19 |
| 2023-12-03 | Parse a pattern with no arm | Nadrieril | -7/+22 |
| 2023-12-02 | Avoid per-register closure expansions | Mark Rousskov | -58/+63 |
| 2023-12-02 | Auto merge of #117912 - GeorgeWort:master, r=petrochenkov | bors | -6/+15 |
| 2023-12-02 | Inline and remove `LoweringContext::handler()`. | Nicholas Nethercote | -6/+2 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -14/+15 |
| 2023-11-29 | Rollup merge of #118157 - Nadrieril:never_pat-feature-gate, r=compiler-errors | Matthias Krüger | -0/+1 |
| 2023-11-29 | Auto merge of #118433 - matthiaskrgr:rollup-fi9lrwg, r=matthiaskrgr | bors | -43/+22 |
| 2023-11-29 | Rollup merge of #118401 - nnethercote:rustc_ast_lowering, r=compiler-errors | Matthias Krüger | -83/+95 |
| 2023-11-29 | Rollup merge of #118419 - compiler-errors:await-span2, r=cjgillot | Matthias Krüger | -19/+20 |
| 2023-11-29 | Rollup merge of #118394 - nnethercote:rm-hir-Ops, r=cjgillot | Matthias Krüger | -24/+2 |
| 2023-11-29 | Add `never_patterns` feature gate | Nadrieril | -0/+1 |
| 2023-11-28 | Fix spans for bad await in inline const | Michael Goulet | -17/+18 |
| 2023-11-28 | Eagerly return ExprKind::Err on yield/await in wrong coroutine context | Michael Goulet | -3/+3 |
| 2023-11-28 | resolve: Feed the `def_kind` query immediately on `DefId` creation | Vadim Petrochenkov | -14/+34 |
| 2023-11-28 | Name explicit registers in conflict register errors for inline assembly | George Wort | -6/+15 |
| 2023-11-28 | Remove unnecessary `Option` from `LoweringContext::allow_{try_trait,gen_futur... | Nicholas Nethercote | -16/+19 |
| 2023-11-28 | Add `LoweringContext::new`. | Nicholas Nethercote | -37/+41 |
| 2023-11-28 | Create `LoweringContext::lower_assoc_item`. | Nicholas Nethercote | -31/+37 |
| 2023-11-28 | Reduce exposure of some things. | Nicholas Nethercote | -3/+3 |
| 2023-11-28 | Remove unused feature. | Nicholas Nethercote | -1/+0 |
| 2023-11-28 | Remove `hir::BinOp`, `hir::BinOpKind`, and `hir::UnOp`. | Nicholas Nethercote | -24/+2 |
| 2023-11-26 | merge `DefKind::Coroutine` into `DefKind::Closure` | bohan | -1/+1 |
| 2023-11-25 | Rollup merge of #118158 - nnethercote:reduce-fluent-boilerplate, r=compiler-e... | Michael Goulet | -5/+2 |
| 2023-11-26 | Use `rustc_fluent_macro::fluent_messages!` directly. | Nicholas Nethercote | -2/+1 |
| 2023-11-26 | Avoid need for `{D,Subd}iagnosticMessage` imports. | Nicholas Nethercote | -3/+1 |
| 2023-11-25 | Remove HirId from QPath::LangItem | Michael Goulet | -45/+16 |
| 2023-11-24 | Add `Span` to `TraitBoundModifier` | Deadbeef | -2/+2 |
| 2023-11-21 | Fix `clippy::needless_borrow` in the compiler | Nilstrieb | -30/+23 |
| 2023-11-17 | Rollup merge of #117549 - DaniPopes:more-copied, r=b-naber | Matthias Krüger | -4/+3 |
| 2023-11-15 | Bump cfg(bootstrap)s | Mark Rousskov | -3/+3 |
| 2023-11-14 | Rollup merge of #117858 - compiler-errors:span, r=lcnr | Takayuki Maeda | -2/+5 |
| 2023-11-13 | Compute layout with spans for better cycle errors in coroutines | Michael Goulet | -2/+5 |
| 2023-11-10 | Remove `-Zkeep-hygiene-data`. | Nicholas Nethercote | -5/+0 |
| 2023-11-04 | Fix remaining uses of `CaptureBy::Value` | Dinu Blanovschi | -1/+1 |
| 2023-11-03 | compiler: use `copied` instead of manual `map` | DaniPopes | -4/+3 |
| 2023-11-02 | Minimize `pub` usage in `source_map.rs`. | Nicholas Nethercote | -5/+4 |
| 2023-10-30 | Some more coroutine renamings | Michael Goulet | -6/+6 |
| 2023-10-30 | Rollup merge of #117147 - DaniPopes:pphir-fn-variadic, r=compiler-errors | León Orell Valerian Liehr | -8/+1 |
| 2023-10-29 | Auto merge of #116447 - oli-obk:gen_fn, r=compiler-errors | bors | -6/+76 |
| 2023-10-27 | Prevent generators from being movable | Oli Scherer | -1/+1 |