| Age | Commit message (Expand) | Author | Lines |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -11/+12 |
| 2020-04-14 | Do not use `DUMMY_HIR_ID` as placeholder value in node_id_to_hir_id table | marmeladema | -13/+10 |
| 2020-04-08 | librustc_hir: return LocalDefId instead of DefId in local_def_id | marmeladema | -9/+5 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-27 | parse: move constraint/arg restriction to ast_validation. | Mazdak Farrokhzad | -0/+1 |
| 2020-03-21 | {rustc::hir::map -> rustc_hir}::definitions | Mazdak Farrokhzad | -1/+1 |
| 2020-03-21 | dep_graph.assert_ignored() -> rustc_interface | Mazdak Farrokhzad | -7/+0 |
| 2020-03-21 | lowering: bug! -> panic! | Mazdak Farrokhzad | -6/+5 |
| 2020-03-21 | separate out an arena for HIR | Mazdak Farrokhzad | -1/+4 |
| 2020-03-21 | Rollup merge of #69033 - jonas-schievink:resume-with-context, r=tmandry | Mazdak Farrokhzad | -0/+5 |
| 2020-03-19 | rustc: use LocalDefId instead of DefIndex in hir::map::definitions. | Eduard-Mihai Burtescu | -14/+9 |
| 2020-03-19 | rustc: use LocalDefId instead of DefIndex in HirId. | Eduard-Mihai Burtescu | -19/+15 |
| 2020-03-19 | rustc: use LocalDefId instead of DefIndex in hir::lowering. | Eduard-Mihai Burtescu | -48/+58 |
| 2020-03-18 | Rollup merge of #69920 - Centril:hir-cleanup, r=Zoxc | Mazdak Farrokhzad | -2/+1 |
| 2020-03-17 | Make async/await lowering use resume arguments | Jonas Schievink | -0/+5 |
| 2020-03-16 | Rollup merge of #69989 - petrochenkov:nolegacy, r=eddyb,matthewjasper | Dylan DPC | -5/+8 |
| 2020-03-16 | remove unnecessary hir::map imports | Mazdak Farrokhzad | -2/+1 |
| 2020-03-16 | hygiene: `modern` -> `normalize_to_macros_2_0` | Vadim Petrochenkov | -5/+8 |
| 2020-03-15 | Auto merge of #68944 - Zoxc:hir-map, r=eddyb | bors | -4/+2 |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -1/+1 |
| 2020-03-14 | Update `krate_attrs` and `get_module` | John Kåre Alsaker | -3/+1 |
| 2020-03-12 | ast: `Mac`/`Macro` -> `MacCall` | Vadim Petrochenkov | -2/+2 |
| 2020-03-06 | fix various typos | Matthias Krüger | -1/+1 |
| 2020-03-01 | encode `;` stmt w/o expr as `StmtKind::Empty` | Mazdak Farrokhzad | -0/+1 |
| 2020-02-29 | Rename `syntax` to `rustc_ast` in source code | Vadim Petrochenkov | -8/+8 |
| 2020-02-24 | parse/ast: move `Defaultness` into variants. | Mazdak Farrokhzad | -2/+2 |
| 2020-02-22 | parse: allow `type Foo: Ord` syntactically. | Mazdak Farrokhzad | -1/+1 |
| 2020-02-18 | Rollup merge of #69194 - Centril:assoc-extern-fuse, r=petrochenkov | Mazdak Farrokhzad | -1/+1 |
| 2020-02-17 | Rename `FunctionRetTy` to `FnRetTy` | Yuki Okushi | -9/+9 |
| 2020-02-15 | Record proc macro harness order for use during metadata deserialization | Aaron Hill | -0/+2 |
| 2020-02-15 | ast: move Generics into AssocItemKinds | Mazdak Farrokhzad | -1/+1 |
| 2020-02-14 | Address review comments | Matthew Jasper | -15/+17 |
| 2020-02-14 | Distinguish RPIT from other impl trait | Matthew Jasper | -16/+26 |
| 2020-02-13 | Constness -> enum Const { Yes(Span), No } | Mazdak Farrokhzad | -1/+1 |
| 2020-02-05 | lowering: add recursion_limit = 256 | Mazdak Farrokhzad | -0/+1 |
| 2020-02-05 | parser: merge `fn` grammars wrt. bodies & headers | Mazdak Farrokhzad | -19/+8 |
| 2020-02-01 | syntax::print -> new crate rustc_ast_pretty | Mazdak Farrokhzad | -1/+1 |
| 2020-02-01 | 1. move node_id to syntax | Mazdak Farrokhzad | -4/+4 |
| 2020-01-21 | Rollup merge of #68140 - ecstatic-morse:const-trait-bound-opt-out, r=oli-obk | Mazdak Farrokhzad | -7/+15 |
| 2020-01-21 | Add comment explaining `MaybeConstMaybe` lowering | Dylan MacKenzie | -0/+5 |
| 2020-01-20 | Parse `?const ?Trait` | Dylan MacKenzie | -2/+7 |
| 2020-01-20 | Add `MaybeConst` variant to `{ast,hir}::TraitBoundModifier` | Dylan MacKenzie | -5/+3 |
| 2020-01-18 | remove rustc_error_codes deps except in rustc_driver | Mazdak Farrokhzad | -1/+0 |
| 2020-01-14 | Rollup merge of #68143 - skinny121:const-param-type-elided-lifetime, r=petroc... | Yuki Okushi | -6/+8 |
| 2020-01-12 | Forbid elided lifetimes within const generic parameter types. | Ben Lewis | -6/+8 |
| 2020-01-11 | move rustc::lint::{context, passes} to rustc_lint. | Mazdak Farrokhzad | -2/+1 |
| 2020-01-11 | Rollup merge of #68043 - Zoxc:missing-timers, r=wesleywiser | Mazdak Farrokhzad | -1/+1 |
| 2020-01-11 | buffered lint infra -> rustc_session | Mazdak Farrokhzad | -3/+3 |
| 2020-01-10 | Rollup merge of #67922 - Centril:lowering-cleanup, r=petrochenkov | Mazdak Farrokhzad | -711/+36 |
| 2020-01-09 | Error when new syntax is lowered | Dylan MacKenzie | -0/+4 |