| Age | Commit message (Expand) | Author | Lines |
| 2024-03-27 | Remove `Partial/Ord` from `AdtDef` | Oli Scherer | -16/+1 |
| 2024-03-27 | Remove `Partial/Ord` from `BoundRegion` | Oli Scherer | -12/+10 |
| 2024-03-27 | Remove `Ord` from `BoundTy` | Oli Scherer | -3/+3 |
| 2024-03-27 | Remove `Ord` from `Binder` | Oli Scherer | -1/+1 |
| 2024-03-27 | Remove `Ord` from `Ty`, `Const`, and `Region` | Oli Scherer | -29/+16 |
| 2024-03-27 | Implement `mut ref`/`mut ref mut` | Jules Bertholet | -31/+16 |
| 2024-03-27 | Use a `dyn Debug` trait object instead of a closure. | Oli Scherer | -2/+10 |
| 2024-03-27 | Add a `CurrentGcx` type to let the deadlock handler access `TyCtxt` | John Kåre Alsaker | -3/+54 |
| 2024-03-27 | Rollup merge of #123021 - compiler-errors:coroutine-layout-lol, r=oli-obk | Guillaume Gomez | -4/+38 |
| 2024-03-27 | Make `def_path_hash_to_def_id` a hook | Oli Scherer | -5/+1 |
| 2024-03-26 | Rollup merge of #122835 - compiler-errors:deref-pure, r=Nadrieril | Matthias Krüger | -0/+25 |
| 2024-03-26 | ignore uncaptured lifetimes when checking opaques | Ali MJ Al-Nasrawy | -0/+32 |
| 2024-03-25 | Extract helper, fix comment on DerefPure | Michael Goulet | -0/+25 |
| 2024-03-25 | Rollup merge of #123044 - compiler-errors:instance, r=oli-obk | Jubilee | -4/+4 |
| 2024-03-25 | Instance is Copy | Michael Goulet | -4/+4 |
| 2024-03-25 | In `pretty_print_type()`, print `async fn` futures' paths instead of spans. | Kevin Reid | -5/+13 |
| 2024-03-24 | Relax validation now | Michael Goulet | -2/+0 |
| 2024-03-24 | Require coroutine kind type to be passed to TyCtxt::coroutine_layout | Michael Goulet | -4/+40 |
| 2024-03-23 | Add+Use `mir::BinOp::Cmp` | Scott McMurray | -0/+7 |
| 2024-03-23 | rename MIR int2ptr casts to match library name | Ralf Jung | -1/+1 |
| 2024-03-22 | Auto merge of #122900 - matthiaskrgr:rollup-nls90mb, r=matthiaskrgr | bors | -35/+60 |
| 2024-03-22 | Auto merge of #122852 - compiler-errors:raw-ptr, r=lcnr | bors | -74/+77 |
| 2024-03-22 | Rollup merge of #122839 - compiler-errors:predicate-polarity, r=lcnr | Matthias Krüger | -34/+54 |
| 2024-03-22 | Rollup merge of #114009 - dvdhrm:pr/transmzst, r=pnkfelix | Matthias Krüger | -1/+6 |
| 2024-03-22 | Auto merge of #122580 - saethlin:compiler-builtins-can-panic, r=pnkfelix | bors | -0/+6 |
| 2024-03-22 | Further simplifications | Michael Goulet | -36/+5 |
| 2024-03-22 | Split out ImplPolarity and PredicatePolarity | Michael Goulet | -22/+73 |
| 2024-03-22 | Make RawPtr take Ty and Mutbl separately | Michael Goulet | -22/+20 |
| 2024-03-22 | Programmatically convert some of the pat ctors | Michael Goulet | -20/+17 |
| 2024-03-22 | Ty::new_ref and Ty::new_ptr stop using TypeAndMut | Michael Goulet | -10/+15 |
| 2024-03-22 | Remove TypeAndMut from relate | Michael Goulet | -29/+32 |
| 2024-03-22 | Rollup merge of #122820 - oli-obk:no_ord_def_id, r=estebank | Matthias Krüger | -64/+3 |
| 2024-03-21 | Rollup merge of #122799 - estebank:issue-122569, r=fee1-dead | Matthias Krüger | -6/+22 |
| 2024-03-21 | Rollup merge of #122358 - compiler-errors:bound-regions-in-generator, r=lcnr | Matthias Krüger | -2/+34 |
| 2024-03-21 | Sorting arbitrary constants should not be done, as it relies on `DefId` order... | Oli Scherer | -64/+3 |
| 2024-03-21 | Auto merge of #121123 - compiler-errors:item-assumptions, r=oli-obk | bors | -1/+1 |
| 2024-03-20 | Add a test | Ben Kimock | -0/+6 |
| 2024-03-20 | Rollup merge of #122749 - aliemjay:region-err, r=compiler-errors | Jacob Pratt | -0/+1 |
| 2024-03-21 | Replace closures with `_` when suggesting fully qualified path for method call | Esteban Küber | -6/+22 |
| 2024-03-20 | make `type_flags(ReError) & HAS_ERROR` | Ali MJ Al-Nasrawy | -0/+1 |
| 2024-03-20 | Split item bounds and item super predicates | Michael Goulet | -1/+1 |
| 2024-03-20 | Auto merge of #120717 - compiler-errors:cap-closure-kind, r=oli-obk | bors | -11/+31 |
| 2024-03-20 | compiler: allow transmute of ZST arrays with generics | David Rheinsberg | -1/+6 |
| 2024-03-20 | Auto merge of #122119 - estebank:issue-117846, r=Nadrieril | bors | -0/+5 |
| 2024-03-19 | Silence unecessary `!Sized` binding error | Esteban Küber | -0/+5 |
| 2024-03-19 | Add a few more comments | Michael Goulet | -1/+5 |
| 2024-03-19 | Fix ABI for FnMut/Fn impls for async closures | Michael Goulet | -1/+10 |
| 2024-03-19 | Only split by-ref/by-move futures for async closures | Michael Goulet | -14/+21 |
| 2024-03-19 | Auto merge of #122735 - matthiaskrgr:rollup-pgb1s90, r=matthiaskrgr | bors | -8/+23 |
| 2024-03-19 | Rollup merge of #122719 - oli-obk:nested_static_feed_hir, r=fee1-dead | Matthias Krüger | -0/+21 |