| Age | Commit message (Expand) | Author | Lines |
| 2024-08-21 | Rollup merge of #129281 - Nadrieril:tweak-unreachable-lint-wording, r=estebank | Matthias Krüger | -4/+22 |
| 2024-08-21 | Simplify some redundant field names | Michael Goulet | -1/+1 |
| 2024-08-21 | Use bool in favor of Option<()> for diagnostics | Michael Goulet | -2/+2 |
| 2024-08-20 | Move the "matches no value" note to be a span label | Nadrieril | -1/+3 |
| 2024-08-19 | Cap the number of patterns pointed to by the lint | Nadrieril | -3/+17 |
| 2024-08-19 | Add a note with a link to explain empty types | Nadrieril | -0/+2 |
| 2024-08-18 | rename AddressOf -> RawBorrow inside the compiler | Ralf Jung | -1/+1 |
| 2024-08-13 | Remove a no-longer-true `assert` | Nadrieril | -4/+6 |
| 2024-08-11 | Rollup merge of #128762 - fmease:use-more-slice-pats, r=compiler-errors | Matthias Krüger | -2/+4 |
| 2024-08-10 | Stabilize `min_exhaustive_patterns` | Nadrieril | -4/+2 |
| 2024-08-07 | Use more slice patterns inside the compiler | León Orell Valerian Liehr | -2/+4 |
| 2024-07-29 | Rollup merge of #128304 - Zalathar:thir-pat-display, r=Nadrieril | Matthias Krüger | -4/+4 |
| 2024-07-29 | Encapsulate the printing of `WitnessPat` | Zalathar | -4/+4 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -11/+10 |
| 2024-07-24 | Improve "covered_by_many" error | Nadrieril | -2/+11 |
| 2024-07-24 | Explain why a given pattern is considered unreachable | Nadrieril | -19/+45 |
| 2024-07-24 | Move rustc-specific entrypoint to the `rustc` module | Nadrieril | -6/+10 |
| 2024-07-21 | Explain why we require `_` for empty patterns | Nadrieril | -0/+4 |
| 2024-07-21 | Tweak `collect_non_exhaustive_tys` | Nadrieril | -16/+16 |
| 2024-07-18 | remove saw_const_match_error; check if pattern contains an Error instead | Ralf Jung | -14/+3 |
| 2024-07-18 | avoid creating an Instance only to immediately disassemble it again | Ralf Jung | -31/+2 |
| 2024-07-18 | const_to_pat: cleanup leftovers from when we had to deal with non-structural ... | Ralf Jung | -226/+107 |
| 2024-07-18 | valtree construction: keep track of which type was valtree-incompatible | Ralf Jung | -4/+3 |
| 2024-07-03 | Auto merge of #125507 - compiler-errors:type-length-limit, r=lcnr | bors | -1/+2 |
| 2024-07-02 | Instance::resolve -> Instance::try_resolve, and other nits | Michael Goulet | -1/+2 |
| 2024-07-02 | chore: remove duplicate words | hattizai | -1/+1 |
| 2024-06-24 | Split out IntoIterator and non-Iterator constructors for AliasTy/AliasTerm/Tr... | Michael Goulet | -1/+1 |
| 2024-06-23 | Replace `f16` and `f128` pattern matching stubs with real implementations | Trevor Gross | -2/+2 |
| 2024-06-18 | Remove redundant argument from `subdiagnostic` method | Oli Scherer | -1/+1 |
| 2024-06-12 | Use Variance glob import everywhere | Michael Goulet | -2/+2 |
| 2024-06-10 | ScalarInt: size mismatches are a bug, do not delay the panic | Ralf Jung | -4/+3 |
| 2024-06-07 | Revert "Create const block DefIds in typeck instead of ast lowering" | Oli Scherer | -3/+5 |
| 2024-06-05 | Add `Ty` to `mir::Const::Ty` | Boxy | -14/+21 |
| 2024-06-05 | Add `Ty` to `ConstKind::Value` | Boxy | -3/+3 |
| 2024-05-28 | Create const block DefIds in typeck instead of ast lowering | Oli Scherer | -5/+3 |
| 2024-05-26 | Auto merge of #124661 - RalfJung:only-structural-consts-in-patterns, r=pnkfelix | bors | -80/+6 |
| 2024-05-23 | Remove `#[macro_use] extern crate tracing` from `rustc_mir_build`. | Nicholas Nethercote | -0/+3 |
| 2024-05-13 | Auto merge of #124914 - nnethercote:rm-extern-crate-rustc_middle, r=saethlin | bors | -6/+8 |
| 2024-05-13 | Remove `extern crate rustc_middle` from `rustc_mir_build`. | Nicholas Nethercote | -6/+8 |
| 2024-05-12 | Match ergonomics 2024: migration lint | Jules Bertholet | -19/+71 |
| 2024-05-03 | turn pointer_structural_match into a hard error | Ralf Jung | -7/+3 |
| 2024-05-03 | remove IndirectStructuralMatch lint, emit the usual hard error instead | Ralf Jung | -73/+3 |
| 2024-04-30 | Replace item names containing an error code with something more meaningful | León Orell Valerian Liehr | -11/+5 |
| 2024-04-20 | Track mutability of deref patterns | Nadrieril | -1/+3 |
| 2024-04-17 | Rename `BindingAnnotation` to `BindingMode` | Jules Bertholet | -2/+2 |
| 2024-04-15 | Ensure inherited reference is never set to `&mut` behind an `&` | Jules Bertholet | -1/+1 |
| 2024-04-12 | Suppress erroneous suggestion | Alan Egerton | -0/+1 |
| 2024-04-08 | Actually create ranged int types in the type system. | Oli Scherer | -1/+1 |
| 2024-04-05 | Rollup merge of #123311 - Jules-Bertholet:andpat-everywhere, r=Nadrieril | Guillaume Gomez | -1/+8 |
| 2024-04-02 | Fix suggestions for match non-exhaustiveness | Michael Goulet | -16/+41 |