| Age | Commit message (Expand) | Author | Lines |
| 2021-11-25 | On type mismatch caused by assignment, point at assignee | Esteban Küber | -4/+12 |
| 2021-11-21 | Simplify for loop desugar | Cameron Steffen | -99/+38 |
| 2021-10-22 | Rollup merge of #89895 - camsteffen:for-loop-head-span, r=davidtwco | Yuki Okushi | -21/+18 |
| 2021-10-15 | Use more lowered spans in for loop | Cameron Steffen | -12/+14 |
| 2021-10-15 | Don't mark for loop head span with desugaring | Cameron Steffen | -10/+5 |
| 2021-10-09 | Store lowering outputs per owner. | Camille GILLOT | -2/+3 |
| 2021-10-02 | Add desugaring mark to while loop | Cameron Steffen | -4/+7 |
| 2021-09-20 | Make with_hir_id_owner responsible for registering the item. | Camille GILLOT | -1/+1 |
| 2021-09-20 | Do not store visibility in *ItemRef. | Camille GILLOT | -1/+0 |
| 2021-09-11 | Auto merge of #84373 - cjgillot:resolve-span, r=michaelwoerister,petrochenkov | bors | -1/+3 |
| 2021-09-11 | Rebase fallout. | Camille GILLOT | -0/+1 |
| 2021-09-11 | Auto merge of #88214 - notriddle:notriddle/for-loop-span-drop-temps-mut, r=na... | bors | -2/+7 |
| 2021-09-10 | Give spans their parent item during lowering. | Camille GILLOT | -1/+2 |
| 2021-09-03 | Replace Vec by Option. | Camille GILLOT | -26/+6 |
| 2021-08-29 | ast_lowering: Introduce `lower_span` for catching all spans entering HIR | Vadim Petrochenkov | -50/+134 |
| 2021-08-28 | rustc: use more correct span data in for loop desugaring | Michael Howell | -2/+7 |
| 2021-08-15 | Introduce hir::ExprKind::Let - Take 2 | Caio | -207/+56 |
| 2021-08-15 | Use correct drop scopes for if expressions | Matthew Jasper | -3/+14 |
| 2021-08-01 | Inline make_if macro | Cameron Steffen | -12/+4 |
| 2021-07-15 | Remove refs from pat slices | Cameron Steffen | -5/+14 |
| 2021-07-09 | Update the comment on `lower_expr_try` | Scott McMurray | -7/+8 |
| 2021-06-10 | Add support for using qualified paths with structs in expression and pattern | Ryan Levick | -9/+11 |
| 2021-05-18 | Auto merge of #84767 - scottmcm:try_trait_actual, r=lcnr | bors | -32/+26 |
| 2021-05-13 | Add support for const operands and options to global_asm! | Amanieu d'Antras | -318/+3 |
| 2021-05-08 | Make `Diagnostic::span_fatal` unconditionally raise an error | Joshua Nelson | -3/+1 |
| 2021-05-06 | Actually implement the feature in the compiler | Scott McMurray | -32/+26 |
| 2021-04-29 | Make current_hir_id_owner a simple tuple. | Camille GILLOT | -1/+1 |
| 2021-04-07 | Rollup merge of #83916 - Amanieu:asm_anonconst, r=petrochenkov | Dylan DPC | -3/+3 |
| 2021-04-06 | Use AnonConst for asm! constants | Amanieu d'Antras | -3/+3 |
| 2021-04-04 | Allow clobbering unsupported registers in asm! | Amanieu d'Antras | -32/+50 |
| 2021-03-17 | Auto merge of #83188 - petrochenkov:field, r=lcnr | bors | -14/+20 |
| 2021-03-16 | ast: Reduce size of `ExprKind` by boxing fields of `ExprKind::Struct` | Vadim Petrochenkov | -8/+9 |
| 2021-03-16 | ast/hir: Rename field-related structures | Vadim Petrochenkov | -7/+12 |
| 2021-03-13 | Always lower asm! to valid HIR | Amanieu d'Antras | -45/+44 |
| 2021-03-09 | Use BTreeMap to store attributes. | Camille GILLOT | -9/+15 |
| 2021-03-09 | Remove hir::Expr::attrs. | Camille GILLOT | -22/+14 |
| 2021-03-09 | Remove hir::Param::attrs. | Camille GILLOT | -1/+1 |
| 2021-03-09 | Remove hir::Arm::attrs. | Camille GILLOT | -16/+3 |
| 2021-03-09 | Take a slice in stmt_let_pat. | Camille GILLOT | -3/+3 |
| 2021-03-09 | Collect attributes during HIR lowering. | Camille GILLOT | -9/+11 |
| 2021-03-07 | Remove notes, increase S/N ratio | Esteban Küber | -18/+11 |
| 2021-03-07 | Account for `if (let pat = expr) {}` | Esteban Küber | -2/+47 |
| 2021-02-25 | Auto merge of #82447 - Amanieu:legacy_const_generics, r=oli-obk | bors | -2/+56 |
| 2021-02-25 | Address review comments | Amanieu d'Antras | -40/+8 |
| 2021-02-23 | Add #[rustc_legacy_const_generics] | Amanieu d'Antras | -2/+88 |
| 2021-02-19 | Lower condition of `if` expression before it's "then" block | Esteban Küber | -1/+2 |
| 2021-02-09 | Rename HIR UnOp variants | Ömer Sinan Ağacan | -3/+3 |
| 2021-01-23 | Rollup merge of #81249 - cjgillot:issue-79537, r=oli-obk | Jonas Schievink | -13/+18 |
| 2021-01-21 | Add loop head span to hir | Esteban Küber | -4/+15 |
| 2021-01-21 | Lower closure prototype after its body. | Camille GILLOT | -13/+18 |