| Age | Commit message (Expand) | Author | Lines |
| 2023-09-27 | fix clippy::{redundant_guards, useless_format} | Matthias Krüger | -3/+1 |
| 2023-09-27 | Auto merge of #115887 - RalfJung:pat, r=oli-obk | bors | -11/+17 |
| 2023-09-27 | Auto merge of #116163 - compiler-errors:lazyness, r=oli-obk | bors | -1/+1 |
| 2023-09-26 | Don't store lazyness in DefKind | Michael Goulet | -1/+1 |
| 2023-09-25 | rename lint; add tracking issue | Ralf Jung | -1/+1 |
| 2023-09-24 | use a must_hold variant for checking PartialEq | Ralf Jung | -5/+10 |
| 2023-09-24 | make sure we always emit the no-PartialEq lint, even if there were other lints | Ralf Jung | -13/+17 |
| 2023-09-24 | work towards rejecting consts in patterns that do not implement PartialEq | Ralf Jung | -2/+12 |
| 2023-09-21 | rename mir::Constant -> mir::ConstOperand, mir::ConstKind -> mir::Const | Ralf Jung | -34/+34 |
| 2023-09-20 | the Const::eval_bits methods don't need to be given the Ty | Ralf Jung | -9/+9 |
| 2023-09-19 | move ConstValue into mir | Ralf Jung | -3/+3 |
| 2023-09-18 | better ICE than sorry | Ralf Jung | -0/+3 |
| 2023-09-16 | thir::pattern: update some comments and error type names | Ralf Jung | -11/+14 |
| 2023-09-14 | move required_consts check to general post-mono-check function | Ralf Jung | -4/+4 |
| 2023-09-13 | make the set of methods between our two Const types more consistent | Ralf Jung | -2/+2 |
| 2023-09-13 | make the eval() functions on our const types return the resulting value | Ralf Jung | -0/+2 |
| 2023-09-03 | Auto merge of #115270 - sebastiantoh:issue-105479, r=Nadrieril | bors | -37/+39 |
| 2023-09-03 | Improve clarity of diagnostic message on non-exhaustive matches | Sebastian Toh | -2/+2 |
| 2023-09-03 | Fix code that now emits unused doc comment warning for expr field | Gurinder Singh | -2/+2 |
| 2023-08-28 | Add note when matching on nested non-exhaustive enums | Sebastian Toh | -31/+29 |
| 2023-08-28 | Add note that str cannot be matched exhaustively | Sebastian Toh | -6/+10 |
| 2023-08-21 | Add note when matching on tuples/ADTs containing non-exhaustive types | Sebastian Toh | -14/+31 |
| 2023-08-15 | Rollup merge of #114819 - estebank:issue-78124, r=compiler-errors | Matthias Krüger | -3/+5 |
| 2023-08-15 | Deny FnDef in patterns | Michael Goulet | -1/+6 |
| 2023-08-14 | Move scrutinee `HirId` into `MatchSource::TryDesugar` | Esteban Küber | -3/+5 |
| 2023-08-07 | Store the laziness of type aliases in the DefKind | León Orell Valerian Liehr | -1/+1 |
| 2023-07-25 | inline format!() args from rustc_codegen_llvm to the end (4) | Matthias Krüger | -27/+20 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -51/+47 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -1/+3 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -1/+1 |
| 2023-07-04 | Replace `mk_const` with `Const::new_x` methods | Boxy | -6/+14 |
| 2023-06-28 | remove cruft | Eric Mark Martin | -1/+0 |
| 2023-06-28 | use translatable subdiagnostic | Eric Mark Martin | -1/+2 |
| 2023-06-28 | add note for non-exhaustive matches with guards | Eric Mark Martin | -0/+5 |
| 2023-06-20 | merge `BorrowKind::Unique` into `BorrowKind::Mut` | Ziru Niu | -1/+1 |
| 2023-06-16 | Re-use the deref-pattern recursion instead of duplicating the logic | Oli Scherer | -59/+26 |
| 2023-06-04 | Show note for type ascription interpreted as a constant pattern, not a new va... | 许杰友 Jieyou Xu (Joe) | -1/+6 |
| 2023-06-02 | Separate AnonConst from ConstBlock in HIR. | Camille GILLOT | -11/+4 |
| 2023-05-31 | Inline from_inline_const into its sole call site | Oli Scherer | -32/+61 |
| 2023-05-31 | Explain and simplify valtree -> mir-const fallback | Oli Scherer | -7/+9 |
| 2023-05-31 | `bug!` message nit | Oli Scherer | -1/+1 |
| 2023-05-31 | Simplify an `if let Some` to a `?` | Oli Scherer | -13/+10 |
| 2023-05-31 | Remove some dead code | Oli Scherer | -15/+2 |
| 2023-05-31 | Remove `lit_to_mir_constant` query | Oli Scherer | -9/+5 |
| 2023-05-31 | Remove `deref_mir_constant` | Oli Scherer | -3/+0 |
| 2023-05-31 | Only rewrite valtree-constants to patterns and keep other constants opaque | Oli Scherer | -156/+224 |
| 2023-05-30 | Remove a hack that has become obsolete after https://github.com/rust-lang/rus... | Oli Scherer | -13/+1 |
| 2023-05-26 | Rollup merge of #111951 - cjgillot:uninh-comment, r=Nadrieril | Matthias Krüger | -2/+2 |
| 2023-05-25 | Rollup merge of #111757 - lowr:fix/lint-attr-on-match-arm, r=eholk | Michael Goulet | -23/+35 |
| 2023-05-25 | Correct comment on privately uninhabited pattern. | Camille GILLOT | -2/+2 |