| Age | Commit message (Expand) | Author | Lines |
| 2023-03-04 | Auto merge of #108692 - nnethercote:dont-call-temporary_scope-twice, r=cjgillot | bors | -4/+2 |
| 2023-03-03 | Don't call `temporary_scope` twice. | Nicholas Nethercote | -4/+2 |
| 2023-03-02 | Rollup merge of #108516 - clubby789:rustc-box-restrict, r=compiler-errors | Matthias Krüger | -1/+31 |
| 2023-03-02 | Restrict `#[rustc_box]` to `Box::new` calls | clubby789 | -1/+31 |
| 2023-02-27 | Auto merge of #108487 - cjgillot:no-typeck-mir, r=oli-obk | bors | -4/+26 |
| 2023-02-27 | Auto merge of #108493 - cjgillot:thir-print, r=compiler-errors | bors | -20/+893 |
| 2023-02-26 | Move THIR printing to rustc_mir_build. | Camille GILLOT | -20/+893 |
| 2023-02-26 | Access upvars through a query. | Camille GILLOT | -2/+3 |
| 2023-02-26 | Store the body type in THIR. | Camille GILLOT | -2/+23 |
| 2023-02-25 | Add ErrorGuaranteed to HIR ExprKind::Err | Michael Goulet | -1/+1 |
| 2023-02-24 | Rename many interner functions. | Nicholas Nethercote | -4/+3 |
| 2023-02-17 | Replace more `mk_foo` calls with `infer_foo`. | Nicholas Nethercote | -3/+3 |
| 2023-02-16 | remove bound_type_of query; make type_of return EarlyBinder; change type_of i... | Kyle Matsuda | -1/+1 |
| 2023-02-16 | Auto merge of #108127 - matthiaskrgr:rollup-kpzfc6j, r=matthiaskrgr | bors | -10/+4 |
| 2023-02-16 | Replace some `then`s with some `then_some`s | Maybe Waffle | -1/+1 |
| 2023-02-16 | `if $c:expr { Some($r:expr) } else { None }` =>> `$c.then(|| $r)` | Maybe Waffle | -10/+4 |
| 2023-02-15 | Add specialized variants of `mk_region`. | Nicholas Nethercote | -1/+1 |
| 2023-02-14 | s/eval_usize/eval_target_usize/ for clarity | Oli Scherer | -4/+6 |
| 2023-01-29 | Rollup merge of #107006 - b-naber:thir-tree, r=jackh726 | Matthias Krüger | -0/+10 |
| 2023-01-28 | Remove `HirId -> LocalDefId` map from HIR. | Camille GILLOT | -3/+1 |
| 2023-01-26 | previous thir unpretty output through thir-flat | b-naber | -0/+7 |
| 2023-01-26 | Auto merge of #107328 - matthiaskrgr:rollup-lfqwo0o, r=matthiaskrgr | bors | -40/+37 |
| 2023-01-26 | Rollup merge of #106978 - mejrs:mir_build3, r=davidtwco | Matthias Krüger | -40/+37 |
| 2023-01-26 | Auto merge of #106745 - m-ou-se:format-args-ast, r=oli-obk | bors | -3/+3 |
| 2023-01-26 | output tree representation for thir-tree | b-naber | -1/+4 |
| 2023-01-23 | fix: use LocalDefId instead of HirId in trait res | Vincenzo Palazzo | -1/+3 |
| 2023-01-17 | Migrate mir_build's borrow conflicts | mejrs | -40/+37 |
| 2023-01-17 | tidy | Waffle Maybe | -16/+15 |
| 2023-01-17 | Don't call closures immediately, use `try{}` blocks | Maybe Waffle | -19/+15 |
| 2023-01-14 | suggest fix for attempted integer identifier in patterns | Ezra Shaw | -4/+16 |
| 2023-01-11 | Rollup merge of #106097 - mejrs:mir_build2, r=oli-obk | Michael Goulet | -318/+135 |
| 2023-01-12 | Expand format_args!() in rust_ast_lowering. | Mara Bos | -3/+3 |
| 2023-01-11 | Translate `Overlap` eagerly | mejrs | -6/+3 |
| 2023-01-11 | Some cleanup, oops | mejrs | -5/+0 |
| 2023-01-11 | Don't recommend `if let` if `let else` works | mejrs | -16/+7 |
| 2023-01-11 | Migrate pattern matching | mejrs | -178/+88 |
| 2023-01-11 | Migrate usefulness.rs | mejrs | -4/+21 |
| 2023-01-11 | Migrate deconstruct_pat.rs | mejrs | -21/+14 |
| 2023-01-11 | Translate const_to_pat.rs | mejrs | -138/+52 |
| 2023-01-11 | Detect out of bounds range pattern value | Esteban Küber | -6/+62 |
| 2023-01-04 | rename get_parent_node to parent_id | Michael Goulet | -6/+6 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -10/+7 |
| 2022-12-17 | Try to fix ICE | mejrs | -1/+5 |
| 2022-12-17 | Resolve various merge conflicts | mejrs | -15/+12 |
| 2022-12-17 | Migrate multiple mut borrows diagnostic | TheOddGarlic | -7/+7 |
| 2022-12-17 | Migrate borrow of moved value diagnostic | TheOddGarlic | -17/+7 |
| 2022-12-17 | Migrate irrefutable let pattern diagnostics | TheOddGarlic | -57/+13 |
| 2022-12-17 | Migrate pattern bindings with variant name lint | TheOddGarlic | -22/+10 |
| 2022-12-17 | Migrate leading/trailing irrefutable let pattern diagnostics | TheOddGarlic | -25/+10 |
| 2022-12-17 | Migrate lower range bound diagnostics | TheOddGarlic | -24/+5 |