| Age | Commit message (Expand) | Author | Lines |
| 2024-01-30 | Remove the `abi_amdgpu_kernel` feature | clubby789 | -1/+0 |
| 2024-01-29 | Stop using `String` for error codes. | Nicholas Nethercote | -1/+2 |
| 2024-01-26 | Auto merge of #119968 - clubby789:unused-feature, r=compiler-errors | bors | -1/+0 |
| 2024-01-26 | Auto merge of #116167 - RalfJung:structural-eq, r=lcnr | bors | -11/+5 |
| 2024-01-25 | Remove unused features | clubby789 | -1/+0 |
| 2024-01-24 | remove StructuralEq trait | Ralf Jung | -11/+5 |
| 2024-01-23 | Rollup merge of #120139 - compiler-errors:fnonce-shim, r=BoxyUwU | León Orell Valerian Liehr | -1/+6 |
| 2024-01-23 | Rollup merge of #119766 - oli-obk:split_tait_and_atpit, r=compiler-errors | León Orell Valerian Liehr | -62/+151 |
| 2024-01-22 | Do not normalize closure signature when building FnOnce shim | Michael Goulet | -1/+6 |
| 2024-01-22 | Limit impl trait in assoc type defining scope | Oli Scherer | -1/+79 |
| 2024-01-22 | Pull opaque type check into a separate method | Oli Scherer | -61/+64 |
| 2024-01-22 | Add a simpler and more targetted code path for impl trait in assoc items | Oli Scherer | -1/+9 |
| 2024-01-19 | Consolidate logic around resolving built-in coroutine trait impls | Michael Goulet | -58/+1 |
| 2024-01-16 | Rollup merge of #119969 - compiler-errors:simplify-closure-env-ty, r=oli-obk | Matthias Krüger | -1/+5 |
| 2024-01-15 | Rollup merge of #119971 - compiler-errors:zip-eq, r=nnethercote | Matthias Krüger | -1/+3 |
| 2024-01-14 | Use zip_eq to enforce that things being zipped have equal sizes | Michael Goulet | -1/+3 |
| 2024-01-14 | Simplify closure_env_ty and closure_env_param | Michael Goulet | -1/+5 |
| 2024-01-13 | Rollup merge of #119587 - beepster4096:system_varargs, r=petrochenkov | Matthias Krüger | -3/+3 |
| 2024-01-12 | allow system abi to be variadic | beepster4096 | -3/+3 |
| 2024-01-10 | Add `DiagCtxt::delayed_bug`. | Nicholas Nethercote | -8/+3 |
| 2023-12-28 | Movability doesn't need to be a query anymore | Michael Goulet | -11/+0 |
| 2023-12-28 | Remove movability from TyKind::Coroutine | Michael Goulet | -8/+19 |
| 2023-12-26 | Rollup merge of #119307 - compiler-errors:pat-lifetimes, r=Nadrieril | Michael Goulet | -2/+2 |
| 2023-12-26 | Auto merge of #119258 - compiler-errors:closure-kind, r=eholk | bors | -2/+2 |
| 2023-12-26 | `thir::Visitor` only needs to visit `&'thir` data | Nadrieril | -2/+2 |
| 2023-12-25 | Only regular coroutines have movability | Michael Goulet | -2/+2 |
| 2023-12-24 | Remove `Session` methods that duplicate `DiagCtxt` methods. | Nicholas Nethercote | -18/+18 |
| 2023-12-22 | Split coroutine desugaring kind from source | Michael Goulet | -6/+6 |
| 2023-12-13 | Rollup merge of #118871 - tmiasko:coroutine-maybe-uninit-fields, r=compiler-e... | Matthias Krüger | -1/+4 |
| 2023-12-12 | Move some methods from `tcx.hir()` to `tcx` | zetanumbers | -9/+8 |
| 2023-12-12 | Coroutine variant fields can be uninitialized | Tomasz Miąsko | -1/+4 |
| 2023-12-11 | Auto merge of #117116 - calebzulawski:repr-simd-packed, r=workingjubilee | bors | -2/+16 |
| 2023-12-10 | remove redundant imports | surechen | -3/+1 |
| 2023-12-08 | Implement `async gen` blocks | Michael Goulet | -3/+42 |
| 2023-12-06 | Yeet PolyGenSig | Michael Goulet | -5/+4 |
| 2023-12-04 | Rollup merge of #118573 - petrochenkov:pathdatakind, r=TaKO8Ki | Takayuki Maeda | -5/+2 |
| 2023-12-03 | rustc: Harmonize `DefKind` and `DefPathData` | Vadim Petrochenkov | -5/+2 |
| 2023-12-03 | more targeted errors when extern types end up in places they should not | Ralf Jung | -0/+12 |
| 2023-12-02 | Implement repr(packed) for repr(simd) | Caleb Zulawski | -2/+16 |
| 2023-12-02 | Rename `HandlerInner::delay_span_bug` as `HandlerInner::span_delayed_bug`. | Nicholas Nethercote | -7/+7 |
| 2023-11-28 | resolve: Feed the `def_kind` query immediately on `DefId` creation | Vadim Petrochenkov | -6/+4 |
| 2023-11-26 | Rollup merge of #118311 - bvanjoi:merge_coroutinue_into_closure, r=petrochenkov | Guillaume Gomez | -4/+3 |
| 2023-11-26 | merge `DefKind::Coroutine` into `DefKind::Closure` | bohan | -4/+3 |
| 2023-11-26 | rustc: `hir().local_def_id_to_hir_id()` -> `tcx.local_def_id_to_hir_id()` cle... | Vadim Petrochenkov | -3/+3 |
| 2023-11-26 | Auto merge of #118250 - petrochenkov:optdefkind, r=compiler-errors | bors | -2/+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 | -1/+0 |
| 2023-11-25 | Auto merge of #118127 - RalfJung:unadjusted-abi, r=compiler-errors | bors | -6/+29 |
| 2023-11-25 | rustc: Make `def_kind` mandatory for all `DefId`s | Vadim Petrochenkov | -2/+2 |
| 2023-11-23 | Fix assertion | bjorn3 | -13/+1 |