| Age | Commit message (Expand) | Author | Lines |
| 2022-09-13 | Shrink some visibilities. | Camille GILLOT | -17/+17 |
| 2022-09-13 | Also compute implicit params in THIR. | Camille GILLOT | -81/+93 |
| 2022-09-13 | Compute explicit MIR params on THIR. | Camille GILLOT | -55/+60 |
| 2022-09-13 | Simplify MIR building entry. | Camille GILLOT | -281/+250 |
| 2022-09-13 | Use tcx.hir() utils for spans in MIR building. | Camille GILLOT | -43/+16 |
| 2022-09-13 | Only keep one version of ImplicitSelfKind. | Camille GILLOT | -8/+2 |
| 2022-09-10 | Auto merge of #100968 - cjgillot:mir-upvar-vec, r=wesleywiser | bors | -152/+83 |
| 2022-09-10 | Remove unused temp. | Camille Gillot | -2/+1 |
| 2022-09-08 | Auto merge of #101467 - nnethercote:shrink-hir-Ty-Pat, r=spastorino | bors | -1/+1 |
| 2022-09-08 | Rollup merge of #101399 - cjgillot:borrowck-binding-span, r=estebank | Dylan DPC | -2/+7 |
| 2022-09-08 | Introduce `DotDotPos`. | Nicholas Nethercote | -1/+1 |
| 2022-09-06 | Shrink span for bindings with subpatterns. | Camille GILLOT | -2/+7 |
| 2022-09-06 | Rollup merge of #101357 - compiler-errors:variant-sugg-tweak, r=oli-obk | Guillaume Gomez | -1/+1 |
| 2022-09-05 | refactor: remove unnecessary variables | Takayuki Maeda | -1/+2 |
| 2022-09-05 | separate the receiver from arguments in HIR | Takayuki Maeda | -3/+6 |
| 2022-09-03 | Include enum path in variant suggestion | Michael Goulet | -1/+1 |
| 2022-09-02 | Use boxed slices in `PatKind`. | Nicholas Nethercote | -12/+23 |
| 2022-09-02 | Box `CanonicalUserTypeAnnotation::CanonicalUserType`. | Nicholas Nethercote | -15/+15 |
| 2022-09-02 | Box `PatKind::Range`. | Nicholas Nethercote | -20/+28 |
| 2022-09-02 | Avoid some clones. | Nicholas Nethercote | -6/+9 |
| 2022-09-02 | Clean up THIR patterns. | Nicholas Nethercote | -94/+96 |
| 2022-09-01 | tracing::instrument cleanup | Oli Scherer | -8/+4 |
| 2022-09-01 | Always import all tracing macros for the entire crate instead of piecemeal by... | Oli Scherer | -1/+1 |
| 2022-09-01 | Directly use the `instrument` macro instead of its full path | Oli Scherer | -2/+2 |
| 2022-08-31 | Fix a bunch of typo | Dezhi Wu | -1/+1 |
| 2022-08-29 | Revert let_chains stabilization | Nilstrieb | -0/+1 |
| 2022-08-29 | Rollup merge of #99027 - tmiasko:basic-blocks, r=oli-obk | Matthias Krüger | -1/+1 |
| 2022-08-26 | Replace `Body::basic_blocks()` with field access | Tomasz Miąsko | -1/+1 |
| 2022-08-26 | Auto merge of #100944 - nnethercote:shrink-thir-Expr, r=cjgillot | bors | -71/+104 |
| 2022-08-25 | Rollup merge of #99954 - dingxiangfei2009:break-out-let-else-higher-up, r=oli... | Yuki Okushi | -2/+19 |
| 2022-08-24 | Rename `thir::Adt` as `thir::AdtExpr`. | Nicholas Nethercote | -7/+12 |
| 2022-08-24 | Box `thir::ExprKind::InlineAsm`. | Nicholas Nethercote | -3/+3 |
| 2022-08-24 | Box `thir::ExprKind::Closure`. | Nicholas Nethercote | -4/+16 |
| 2022-08-24 | Store blocks in `Thir`. | Nicholas Nethercote | -27/+39 |
| 2022-08-24 | Box `user_ty` fields in `thir::ExprKind`. | Nicholas Nethercote | -31/+35 |
| 2022-08-23 | Only compute captures once when building MIR. | Camille GILLOT | -152/+84 |
| 2022-08-23 | Remove the symbol from `ast::LitKind::Err`. | Nicholas Nethercote | -2/+2 |
| 2022-08-22 | Auto merge of #100881 - Dylan-DPC:rollup-q9rr658, r=Dylan-DPC | bors | -4/+19 |
| 2022-08-22 | Rollup merge of #98200 - ouz-a:issue-98177, r=oli-obk | Dylan DPC | -4/+19 |
| 2022-08-22 | Fix span for consts in mir builder | Nilstrieb | -3/+13 |
| 2022-08-19 | Rollup merge of #100081 - RalfJung:unused-unsafe-in-unsafe-fn, r=jackh726 | Dylan DPC | -4/+5 |
| 2022-08-12 | Adjust cfgs | Mark Rousskov | -1/+0 |
| 2022-08-11 | Rollup merge of #99110 - audunhalland:match_has_guard_from_candidate, r=pnkfelix | Dylan DPC | -1/+1 |
| 2022-08-10 | Rollup merge of #100240 - cjgillot:noice-structural-match, r=davidtwco | Matthias Krüger | -1/+6 |
| 2022-08-09 | suggest adding an appropriate missing pattern excluding comments | Takayuki Maeda | -14/+14 |
| 2022-08-07 | Fail gracefully when const pattern is not structural match. | Camille GILLOT | -1/+6 |
| 2022-08-06 | Rollup merge of #100132 - compiler-errors:issue-100103, r=tmiasko | Matthias Krüger | -1/+1 |
| 2022-08-04 | Rollup merge of #100093 - wcampbell0x2a:unused-parens-for-match-arms, r=petro... | Matthias Krüger | -1/+1 |
| 2022-08-04 | Enable unused_parens for match arms | wcampbell | -1/+1 |
| 2022-08-04 | Auto merge of #99843 - oli-obk:is_useful_perf, r=compiler-errors | bors | -46/+43 |