| Age | Commit message (Expand) | Author | Lines |
| 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 | -12/+5 |
| 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 | -12/+11 |
| 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-30 | Get `lit_to_const` in sync with `const_to_valtree_inner` | Oli Scherer | -0/+13 |
| 2023-05-29 | Rename `tcx.mk_re_*` => `Region::new_*` | Maybe Waffle | -1/+1 |
| 2023-05-27 | Rollup merge of #111952 - cjgillot:drop-replace, r=WaffleLapkin | Guillaume Gomez | -4/+6 |
| 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 | Remove DesugaringKind::Replace. | Camille GILLOT | -4/+6 |
| 2023-05-25 | Correct comment on privately uninhabited pattern. | Camille GILLOT | -2/+2 |
| 2023-05-25 | Rollup merge of #111624 - cjgillot:private-uninhabited-pattern, r=petrochenkov | Matthias Krüger | -0/+20 |
| 2023-05-25 | Auto merge of #111925 - Manishearth:rollup-z6z6l2v, r=Manishearth | bors | -7/+7 |
| 2023-05-24 | Rollup merge of #111841 - matthewjasper:validate-match-guards, r=compiler-errors | Matthias Krüger | -2/+6 |
| 2023-05-24 | Emit diagnostic for privately uninhabited uncovered witnesses. | Camille GILLOT | -0/+20 |
| 2023-05-24 | Use `Option::is_some_and` and `Result::is_ok_and` in the compiler | Maybe Waffle | -7/+7 |
| 2023-05-23 | Rollup merge of #111579 - scottmcm:enum-as-signed, r=oli-obk | Dylan DPC | -43/+58 |
| 2023-05-23 | Rollup merge of #111501 - WaffleLapkin:drivebycleanupuwu, r=oli-obk | Dylan DPC | -12/+16 |
| 2023-05-22 | Run AST validation on match guards correctly | Matthew Jasper | -2/+6 |
| 2023-05-20 | don't skip inference for type in `offset_of!` | Lukas Markeffsky | -4/+3 |
| 2023-05-19 | Drive-by-cleanup: Don't emit `thir::ExprKind::NeverToAny` for `! -> !` | Maybe Waffle | -0/+1 |
| 2023-05-19 | Consider lint check attributes on match arms in match checks | Ryo Yoshida | -23/+35 |
| 2023-05-18 | Also assume wrap-around discriminants in `as` MIR building | Scott McMurray | -43/+58 |
| 2023-05-17 | `rustc_mir_build`: drive-by-cleaup: replace nested ifs with a `match` | Maybe Waffle | -6/+9 |
| 2023-05-17 | `rustc_mir_build`: drive-by-cleanup: remove some local mutable state | Maybe Waffle | -6/+6 |
| 2023-05-16 | Erase regions of type in `offset_of!` | clubby789 | -3/+4 |
| 2023-05-16 | Auto merge of #105750 - oli-obk:valtrees, r=lcnr | bors | -54/+84 |
| 2023-05-16 | Document how constants as opaque patterns behave differently. | Oli Scherer | -4/+20 |
| 2023-05-15 | Rollup merge of #111587 - cbeuw:copy-for-deref, r=oli-obk | Matthias Krüger | -0/+1 |
| 2023-05-15 | Rollup merge of #111578 - Zoxc:query-macro-move, r=cjgillot | Matthias Krüger | -1/+1 |
| 2023-05-15 | Update some comments | Oli Scherer | -9/+5 |
| 2023-05-15 | Always fall back to PartialEq when a constant in a pattern is not recursively... | Oli Scherer | -36/+51 |
| 2023-05-15 | Unnest a variable in prep for the next commit which needs access to the place | Oli Scherer | -5/+8 |
| 2023-05-15 | Add CopyForDeref to custom MIR | Andy Wang | -0/+1 |
| 2023-05-15 | Move expansion of query macros in rustc_middle to rustc_middle::query | John Kåre Alsaker | -1/+1 |
| 2023-05-15 | Auto merge of #111570 - compiler-errors:ct-err, r=BoxyUwU | bors | -1/+1 |
| 2023-05-14 | Rename const error methods for consistency | Michael Goulet | -1/+1 |
| 2023-05-13 | Implement references VarDebugInfo. | Camille GILLOT | -0/+4 |
| 2023-05-11 | Rollup merge of #108705 - clubby789:refutable-let-closure-borrow, r=cjgillot | Matthias Krüger | -12/+17 |
| 2023-05-05 | Rollup merge of #108801 - fee1-dead-contrib:c-str, r=compiler-errors | Dylan DPC | -0/+6 |
| 2023-05-04 | Auto merge of #110806 - WaffleLapkin:unmkI, r=lcnr | bors | -1/+1 |
| 2023-05-03 | Restrict `From<S>` for `{D,Subd}iagnosticMessage`. | Nicholas Nethercote | -7/+7 |
| 2023-05-02 | Auto merge of #111082 - saethlin:box-assertkind, r=saethlin | bors | -1/+1 |