| Age | Commit message (Expand) | Author | Lines |
| 2021-04-13 | Lower async fn in traits. | Camille GILLOT | -3/+11 |
| 2021-04-11 | Implement token-based handling of attributes during expansion | Aaron Hill | -45/+7 |
| 2021-04-08 | Rollup merge of #83980 - pierwill:fix-compiler-librustc-names, r=davidtwco | Dylan DPC | -1/+1 |
| 2021-04-08 | Fix outdated crate names in compiler docs | pierwill | -1/+1 |
| 2021-04-07 | Rollup merge of #83935 - SNCPlay42:param-default-impl-trait, r=varkor | Dylan DPC | -7/+1 |
| 2021-04-07 | Rollup merge of #83916 - Amanieu:asm_anonconst, r=petrochenkov | Dylan DPC | -3/+3 |
| 2021-04-06 | forbid `impl Trait` in generic param defaults | SNCPlay42 | -7/+1 |
| 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-30 | Remove hir::CrateItem. | Camille GILLOT | -1/+1 |
| 2021-03-26 | Use iter::zip in compiler/ | Josh Stone | -2/+4 |
| 2021-03-25 | Auto merge of #83424 - cjgillot:noparam, r=lcnr | bors | -12/+4 |
| 2021-03-23 | GenericParam does not need to be a HIR owner. | Camille GILLOT | -12/+4 |
| 2021-03-23 | Add has_default to GenericParamDefKind::Const | kadmin | -1/+0 |
| 2021-03-19 | stabilize or_patterns | mark | -1/+1 |
| 2021-03-18 | hir: Preserve used syntax in `TyKind::TraitObject` | Vadim Petrochenkov | -1/+2 |
| 2021-03-17 | Auto merge of #83188 - petrochenkov:field, r=lcnr | bors | -22/+28 |
| 2021-03-17 | Rollup merge of #83124 - cjgillot:iiib, r=petrochenkov | Yuki Okushi | -63/+15 |
| 2021-03-17 | Rollup merge of #83092 - petrochenkov:qspan, r=estebank | Yuki Okushi | -5/+8 |
| 2021-03-16 | Auto merge of #82838 - Amanieu:rustdoc_asm, r=nagisa | bors | -45/+44 |
| 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 | -15/+20 |
| 2021-03-15 | More precise spans for HIR paths | Vadim Petrochenkov | -5/+8 |
| 2021-03-15 | Special case type aliases from impl trait in const/static types | Oli Scherer | -2/+2 |
| 2021-03-14 | Remove dead code. | Camille GILLOT | -25/+0 |
| 2021-03-14 | Do not insert impl_trait_in_bindings opaque definitions twice. | Camille GILLOT | -38/+15 |
| 2021-03-13 | Always lower asm! to valid HIR | Amanieu d'Antras | -45/+44 |
| 2021-03-13 | Auto merge of #82891 - cjgillot:monoparent, r=petrochenkov | bors | -21/+28 |
| 2021-03-13 | Rollup merge of #82984 - camsteffen:lower-block, r=cjgillot | Yuki Okushi | -20/+6 |
| 2021-03-12 | Make def_key and HIR parenting consistent. | Camille GILLOT | -21/+28 |
| 2021-03-10 | Simplify lower ast block | Cameron Steffen | -20/+6 |
| 2021-03-10 | Auto merge of #76570 - cratelyn:implement-rfc-2945-c-unwind-abi, r=Amanieu | bors | -4/+4 |
| 2021-03-09 | rustc_target: add "unwind" payloads to `Abi` | katelyn a. martin | -4/+4 |
| 2021-03-09 | Use BTreeMap to store attributes. | Camille GILLOT | -30/+60 |
| 2021-03-09 | Alias attributes of hir::Stmt. | Camille GILLOT | -5/+17 |
| 2021-03-09 | Remove hir::Expr::attrs. | Camille GILLOT | -24/+16 |
| 2021-03-09 | Remove hir::Item::attrs. | Camille GILLOT | -4/+1 |
| 2021-03-09 | Remove hir::ImplItem::attrs. | Camille GILLOT | -1/+1 |
| 2021-03-09 | Remove hir::TraitItem::attrs. | Camille GILLOT | -8/+2 |
| 2021-03-09 | Remove hir::ForeignItem::attrs. | Camille GILLOT | -1/+1 |
| 2021-03-09 | Remove hir::StructField::attrs. | Camille GILLOT | -1/+1 |
| 2021-03-09 | Remove hir::Variant::attrs. | Camille GILLOT | -1/+1 |
| 2021-03-09 | Remove hir::Param::attrs. | Camille GILLOT | -3/+2 |
| 2021-03-09 | Remove hir::Arm::attrs. | Camille GILLOT | -16/+3 |
| 2021-03-09 | Remove hir::Crate::attrs. | Camille GILLOT | -2/+2 |
| 2021-03-09 | Remove hir::MacroDef::attrs. | Camille GILLOT | -2/+1 |
| 2021-03-09 | Remove hir::GenericParam::attrs. | Camille GILLOT | -4/+1 |
| 2021-03-09 | Remove hir::Local::attrs. | Camille GILLOT | -12/+2 |
| 2021-03-09 | Take a slice in stmt_let_pat. | Camille GILLOT | -9/+16 |
| 2021-03-09 | Collect attributes during HIR lowering. | Camille GILLOT | -53/+89 |