| Age | Commit message (Expand) | Author | Lines |
| 2022-04-16 | Auto merge of #94468 - Amanieu:global_asm_sym, r=nagisa | bors | -5/+60 |
| 2022-04-15 | Rollup merge of #95194 - kckeiks:update-algo-in-find-use-placement, r=pnkfelix | Dylan DPC | -6/+11 |
| 2022-04-14 | Reimplement lowering of sym operands for asm! so that it also works with glob... | Amanieu d'Antras | -5/+60 |
| 2022-04-04 | diagnostics: use correct span for const generics | Michael Howell | -1/+1 |
| 2022-03-31 | remove find_use_placement | Fausto | -6/+11 |
| 2022-03-31 | Record item-likes in ItemLowerer. | Camille GILLOT | -61/+69 |
| 2022-03-31 | Create a new LoweringContext for each item-like. | Camille GILLOT | -129/+104 |
| 2022-03-31 | Make lowering pull-based. | Camille GILLOT | -55/+120 |
| 2022-03-31 | Implement with_parent_item_lifetime_defs on ItemLowerer. | Camille GILLOT | -70/+62 |
| 2022-03-31 | Move lower_crate outside the LoweringContext. | Camille GILLOT | -41/+39 |
| 2022-03-31 | Stop emitting lints during lowering. | Camille GILLOT | -3/+0 |
| 2022-03-31 | Remove mutability in ResolverAstLowering. | Camille GILLOT | -7/+5 |
| 2022-03-31 | Rollup merge of #95011 - michaelwoerister:awaitee_field, r=tmandry | Dylan DPC | -13/+16 |
| 2022-03-30 | async: Give predictable, reserved name to binding generated from .await expre... | Michael Woerister | -13/+16 |
| 2022-03-30 | Spellchecking some comments | Yuri Astrakhan | -1/+1 |
| 2022-03-17 | Rollup merge of #94960 - codehorseman:master, r=oli-obk | Dylan DPC | -1/+1 |
| 2022-03-16 | rustc_error: make ErrorReported impossible to construct | mark | -1/+1 |
| 2022-03-16 | resolve the conflict in compiler/rustc_session/src/parse.rs | codehorseman | -1/+1 |
| 2022-03-15 | Auto merge of #94584 - pnkfelix:inject-use-suggestion-sites, r=ekuber | bors | -2/+2 |
| 2022-03-13 | Update comments. | Camille GILLOT | -9/+5 |
| 2022-03-12 | Identify anonymous lifetimes by their DefId in HIR. | Camille GILLOT | -67/+102 |
| 2022-03-07 | remove unnecessary `..` patterns | Takayuki Maeda | -6/+2 |
| 2022-03-05 | Fallback to other where clause if preferred is missing | Jack Huey | -8/+24 |
| 2022-03-05 | Change syntax for TyAlias where clauses | Jack Huey | -9/+34 |
| 2022-03-03 | Adjusted diagnostic output so that if there is no `use` in a item sequence, | Felix S. Klock II | -1/+1 |
| 2022-03-03 | Associate multiple with a crate too. | Felix S. Klock II | -1/+1 |
| 2022-03-03 | refactor: prepare to associate multiple spans with a module. | Felix S. Klock II | -1/+1 |
| 2022-03-01 | compiler: fix some typos | cuishuang | -1/+1 |
| 2022-02-25 | Auto merge of #94290 - Mark-Simulacrum:bump-bootstrap, r=pietroalbini | bors | -1/+1 |
| 2022-02-25 | Switch bootstrap cfgs | Mark Rousskov | -1/+1 |
| 2022-02-24 | Remove in-band lifetimes | Michael Goulet | -45/+12 |
| 2022-02-24 | resolve: Fix incorrect results of `opt_def_kind` query for some built-in macros | Vadim Petrochenkov | -3/+5 |
| 2022-02-24 | Auto merge of #93438 - spastorino:node_id_to_hir_id_refactor, r=oli-obk | bors | -59/+61 |
| 2022-02-22 | local_id is always != 0 at this point | Santiago Pastorino | -11/+10 |
| 2022-02-21 | Take CodegenFnAttrs into account when validating asm! register operands | Amanieu d'Antras | -21/+7 |
| 2022-02-21 | On ARM, use relocation_model to detect whether r9 should be reserved | Amanieu d'Antras | -0/+2 |
| 2022-02-20 | Move trait_map to Lowering Context | Santiago Pastorino | -11/+10 |
| 2022-02-20 | Move local_id_to_def_id to Lowering Context | Santiago Pastorino | -29/+29 |
| 2022-02-20 | Avoid call to lower_node_id when not needed | Santiago Pastorino | -1/+1 |
| 2022-02-20 | Make node_id_to_hir_id owner-local. | Camille GILLOT | -36/+40 |
| 2022-02-20 | Rollup merge of #94146 - est31:let_else, r=cjgillot | Matthias Krüger | -9/+6 |
| 2022-02-19 | Adopt let else in more places | est31 | -9/+6 |
| 2022-02-18 | Rollup merge of #93877 - Amanieu:asm_fixes, r=nagisa | Matthias Krüger | -5/+6 |
| 2022-02-18 | Rollup merge of #92806 - compiler-errors:better-impl-trait-deny, r=estebank | Matthias Krüger | -90/+240 |
| 2022-02-18 | asm: Allow the use of r8-r14 as clobbers on Thumb1 | Amanieu d'Antras | -5/+6 |
| 2022-02-17 | fix impl trait message, bless tests | Michael Goulet | -4/+3 |
| 2022-02-17 | Add more information to `impl Trait` deny error | Michael Goulet | -90/+241 |
| 2022-02-17 | Revert "Auto merge of #91403 - cjgillot:inherit-async, r=oli-obk" | Oli Scherer | -19/+50 |
| 2022-02-12 | Auto merge of #91403 - cjgillot:inherit-async, r=oli-obk | bors | -50/+19 |
| 2022-02-12 | Inherit lifetimes for async fn instead of duplicating them. | Camille GILLOT | -50/+19 |