| Age | Commit message (Expand) | Author | Lines |
| 2020-04-25 | Rollup merge of #71494 - flip1995:while_let_span, r=petrochenkov | Dylan DPC | -6/+2 |
| 2020-04-24 | Use correct span on while (let) lowering | flip1995 | -6/+2 |
| 2020-04-22 | Tweak `'static` suggestion code | Esteban Küber | -1/+4 |
| 2020-04-19 | Dogfood more or_patterns in the compiler | Josh Stone | -12/+13 |
| 2020-04-16 | Auto merge of #70831 - sfackler:shrink-future-stack, r=matthewjasper | bors | -11/+34 |
| 2020-04-15 | Rollup merge of #71116 - marmeladema:dummy-hir-id-removal, r=eddyb | Mazdak Farrokhzad | -13/+10 |
| 2020-04-14 | Do not use `DUMMY_HIR_ID` as placeholder value in node_id_to_hir_id table | marmeladema | -13/+10 |
| 2020-04-14 | Auto merge of #70679 - tmandry:issue-68112, r=nikomatsakis | bors | -2/+2 |
| 2020-04-13 | Use clearer message when obligation is caused by await expr | Tyler Mandry | -2/+2 |
| 2020-04-14 | Rename AssocKind::Method to AssocKind::Fn | Rustin-Liu | -2/+2 |
| 2020-04-08 | librustc_hir: return LocalDefId instead of DefId in local_def_id | marmeladema | -14/+10 |
| 2020-04-06 | Auto merge of #70737 - Centril:cleanup-lower-item-id, r=estebank | bors | -11/+2 |
| 2020-04-05 | Remove a stack frame from .await calls | Steven Fackler | -11/+34 |
| 2020-04-03 | cleanup lower_item_id | Mazdak Farrokhzad | -11/+2 |
| 2020-04-01 | Hide `task_context` when lowering body | Jonas Schievink | -0/+2 |
| 2020-03-30 | Use if let instead of match when only matching a single variant (clippy::sing... | Matthias Krüger | -10/+7 |
| 2020-03-30 | rustc -> rustc_middle part 1 | Mazdak Farrokhzad | -1/+1 |
| 2020-03-27 | address some review comments | Mazdak Farrokhzad | -3/+3 |
| 2020-03-27 | parse: move constraint/arg restriction to ast_validation. | Mazdak Farrokhzad | -15/+21 |
| 2020-03-26 | Rename asm! to llvm_asm! | Amanieu d'Antras | -6/+6 |
| 2020-03-23 | Auto merge of #69649 - estebank:negative-impl-span, r=Centril | bors | -13/+21 |
| 2020-03-23 | Auto merge of #70296 - Centril:rollup-wvfmb3n, r=Centril | bors | -1/+1 |
| 2020-03-22 | Tweak output for invalid negative impl errors | Esteban Küber | -13/+21 |
| 2020-03-22 | remove redundant closures (clippy::redundant_closure) | Matthias Krüger | -1/+1 |
| 2020-03-21 | lowering: remove librustc dependency | Mazdak Farrokhzad | -1/+0 |
| 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 | add_elided_lifetime_in_path_suggestion -> rustc_session | Mazdak Farrokhzad | -1/+1 |
| 2020-03-21 | lowering: bug! -> panic! | Mazdak Farrokhzad | -18/+17 |
| 2020-03-21 | separate out an arena for HIR | Mazdak Farrokhzad | -2/+6 |
| 2020-03-21 | Rollup merge of #69033 - jonas-schievink:resume-with-context, r=tmandry | Mazdak Farrokhzad | -24/+86 |
| 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 | -57/+72 |
| 2020-03-18 | Rollup merge of #69920 - Centril:hir-cleanup, r=Zoxc | Mazdak Farrokhzad | -3/+2 |
| 2020-03-17 | Don't create AST fragments when lowering to HIR | Jonas Schievink | -30/+34 |
| 2020-03-17 | Split up large `FnDecl` expression | Jonas Schievink | -14/+13 |
| 2020-03-17 | Improve comments in HIR lowering code | Jonas Schievink | -2/+3 |
| 2020-03-17 | Format | Jonas Schievink | -7/+3 |
| 2020-03-17 | Make async/await lowering use resume arguments | Jonas Schievink | -20/+82 |
| 2020-03-16 | Rollup merge of #69989 - petrochenkov:nolegacy, r=eddyb,matthewjasper | Dylan DPC | -9/+12 |
| 2020-03-16 | use direct imports for `rustc::{lint, session}`. | Mazdak Farrokhzad | -1/+1 |
| 2020-03-16 | remove unnecessary hir::map imports | Mazdak Farrokhzad | -2/+1 |
| 2020-03-15 | More Method->Fn renaming | Mark Mansi | -3/+3 |
| 2020-03-16 | hygiene: `modern` -> `normalize_to_macros_2_0` | Vadim Petrochenkov | -6/+9 |
| 2020-03-16 | ast/hir: `MacroDef::legacy` -> `MacroDef::macro_rules` | Vadim Petrochenkov | -3/+3 |
| 2020-03-15 | Auto merge of #68944 - Zoxc:hir-map, r=eddyb | bors | -4/+2 |
| 2020-03-15 | Rollup merge of #69988 - petrochenkov:nomacrodef, r=Centril | Mazdak Farrokhzad | -6/+6 |
| 2020-03-15 | Rollup merge of #69589 - petrochenkov:maccall, r=Centril | Mazdak Farrokhzad | -10/+10 |
| 2020-03-14 | Index HIR after creating TyCtxt | John Kåre Alsaker | -1/+1 |