| Age | Commit message (Expand) | Author | Lines |
| 2024-02-19 | Eagerly simplify match pairs | Nadrieril | -102/+61 |
| 2024-02-19 | Don't repeatedly simplify already-simplified match pairs | Nadrieril | -11/+7 |
| 2024-02-19 | Make `simplify_candidate` more general | Nadrieril | -48/+56 |
| 2024-02-19 | Move `Or` test outside of `simplify_candidate` | Nadrieril | -31/+26 |
| 2024-02-19 | Switch to Vec of MatchPairs | Nadrieril | -6/+3 |
| 2024-02-17 | Replace the loop with recursive calls for clarity | Nadrieril | -28/+31 |
| 2024-02-17 | Move the loop out of the function | Nadrieril | -51/+50 |
| 2024-02-17 | Move everything into the loop | Nadrieril | -38/+36 |
| 2024-02-17 | No need for empty special case anymore | Nadrieril | -3/+0 |
| 2024-02-17 | It's fine to assign `otherwise_block`s to unreachable candidates | Nadrieril | -11/+4 |
| 2024-02-17 | Reuse `next_prebinding` | Nadrieril | -8/+3 |
| 2024-02-17 | Simplify return block computation | Nadrieril | -6/+4 |
| 2024-02-17 | Merge the two loops | Nadrieril | -26/+17 |
| 2024-02-17 | Tweak the function boundary | Nadrieril | -18/+10 |
| 2024-02-17 | Don't bother to save a block | Nadrieril | -4/+0 |
| 2024-02-17 | Rollup merge of #121085 - davidtwco:always-eager-diagnostics, r=nnethercote | Matthias Krüger | -1/+1 |
| 2024-02-16 | Fix an ICE in the recursion lint | Oli Scherer | -1/+3 |
| 2024-02-15 | errors: only eagerly translate subdiagnostics | David Wood | -1/+1 |
| 2024-02-15 | Add `ErrorGuaranteed` to `ast::LitKind::Err`, `token::LitKind::Err`. | Nicholas Nethercote | -15/+9 |
| 2024-02-14 | Auto merge of #120847 - oli-obk:track_errors9, r=compiler-errors | bors | -2/+11 |
| 2024-02-14 | Continue compilation after check_mod_type_wf errors | Oli Scherer | -2/+11 |
| 2024-02-14 | Use fewer delayed bugs. | Nicholas Nethercote | -10/+15 |
| 2024-02-13 | Rollup merge of #120978 - Nadrieril:sane-blocks, r=matthewjasper | Matthias Krüger | -71/+61 |
| 2024-02-12 | Rollup merge of #120958 - ShoyuVanilla:remove-subst, r=oli-obk | Matthias Krüger | -3/+3 |
| 2024-02-12 | Start blocks eagerly | Nadrieril | -71/+61 |
| 2024-02-12 | Dejargnonize subst | Shoyu Vanilla | -3/+3 |
| 2024-02-12 | Lowering field access for anonymous adts | Frank King | -5/+15 |
| 2024-02-11 | Rollup merge of #120872 - petrochenkov:opthirpar, r=cjgillot | Matthias Krüger | -1/+1 |
| 2024-02-10 | hir: Remove `hir::Map::{opt_parent_id,parent_id,get_parent,find_parent}` | Vadim Petrochenkov | -1/+1 |
| 2024-02-10 | Remove unnecessary `min_specialization` after bootstrap | Zalathar | -1/+1 |
| 2024-02-09 | Rollup merge of #120817 - compiler-errors:more-mir-errors, r=oli-obk | Matthias Krüger | -10/+26 |
| 2024-02-09 | Rollup merge of #120693 - nnethercote:invert-diagnostic-lints, r=davidtwco | Matthias Krüger | -0/+3 |
| 2024-02-09 | Don't ICE in ByMoveBody when coroutine is tainted | Michael Goulet | -10/+26 |
| 2024-02-08 | Rollup merge of #120801 - oli-obk:drop_recursion_ice, r=Nilstrieb | Matthias Krüger | -6/+5 |
| 2024-02-08 | Rollup merge of #120775 - Nadrieril:more-min_exh_pats, r=compiler-errors | Matthias Krüger | -2/+4 |
| 2024-02-08 | Avoid ICE in drop recursion check in case of invalid drop impls | Oli Scherer | -6/+5 |
| 2024-02-08 | Auto merge of #120767 - matthiaskrgr:rollup-0k8ib1c, r=matthiaskrgr | bors | -63/+56 |
| 2024-02-08 | Match `min_exhaustive_patterns` implementation with `exhaustive_patterns` | Nadrieril | -2/+4 |
| 2024-02-08 | Continue to borrowck even if there were previous errors | Oli Scherer | -4/+29 |
| 2024-02-08 | Rollup merge of #120734 - nnethercote:SubdiagnosticMessageOp, r=compiler-errors | Matthias Krüger | -9/+3 |
| 2024-02-08 | Rollup merge of #120214 - Nadrieril:fix-120210, r=pnkfelix | Matthias Krüger | -54/+53 |
| 2024-02-08 | Add `SubdiagnosticMessageOp` as a trait alias. | Nicholas Nethercote | -9/+3 |
| 2024-02-06 | Rollup merge of #120423 - RalfJung:indirect-structural-match, r=petrochenkov | Matthias Krüger | -95/+36 |
| 2024-02-06 | Rollup merge of #120331 - Nadrieril:no-arena, r=compiler-errors | Matthias Krüger | -2/+1 |
| 2024-02-06 | Teach typeck/borrowck/solvers how to deal with async closures | Michael Goulet | -2/+20 |
| 2024-02-06 | Add CoroutineClosure to TyKind, AggregateKind, UpvarArgs | Michael Goulet | -1/+4 |
| 2024-02-06 | Invert diagnostic lints. | Nicholas Nethercote | -0/+3 |
| 2024-02-05 | get rid of nontrivial_structural_match lint and custom_eq const qualif | Ralf Jung | -95/+36 |
| 2024-02-05 | Rollup merge of #116284 - RalfJung:no-nan-match, r=cjgillot | Matthias Krüger | -14/+26 |
| 2024-01-31 | Remove `pattern_arena` from `RustcMatchCheckCtxt` | Nadrieril | -2/+1 |