| Age | Commit message (Expand) | Author | Lines |
| 2022-01-11 | Auto merge of #92533 - Aaron1011:variant-symbol, r=petrochenkov | bors | -97/+110 |
| 2022-01-11 | Auto merge of #90948 - oli-obk:🧹, r=nikomatsakis | bors | -20/+24 |
| 2022-01-11 | Store a `Symbol` instead of an `Ident` in `VariantDef`/`FieldDef` | Aaron Hill | -97/+110 |
| 2022-01-11 | Auto merge of #92070 - rukai:replace_vec_into_iter_with_array_into_iter, r=Ma... | bors | -39/+34 |
| 2022-01-11 | Auto merge of #92012 - llogiq:repr-c-def-id, r=michaelwoerister | bors | -1/+8 |
| 2022-01-10 | Auto merge of #92719 - matthiaskrgr:rollup-tc7oqys, r=matthiaskrgr | bors | -48/+54 |
| 2022-01-10 | Rollup merge of #92702 - ehuss:clean-lang_items-extract, r=petrochenkov | Matthias Krüger | -27/+9 |
| 2022-01-10 | Rollup merge of #92636 - compiler-errors:normalize-generator-const-expr, r=ol... | Matthias Krüger | -4/+6 |
| 2022-01-10 | Rollup merge of #92357 - GuillaumeGomez:fix-doc-comment-backline-removal, r=c... | Matthias Krüger | -7/+0 |
| 2022-01-10 | Rollup merge of #92248 - compiler-errors:normalize-type-for-pointee, r=jackh726 | Matthias Krüger | -10/+39 |
| 2022-01-10 | Auto merge of #87487 - lambinoo:I-64762_unreachable_pub_lint, r=petrochenkov | bors | -190/+300 |
| 2022-01-10 | Auto merge of #92278 - Aaron1011:fix-fingerprint-caching, r=michaelwoerister | bors | -46/+118 |
| 2022-01-09 | Clean up lang_items::extract | Eric Huss | -27/+9 |
| 2022-01-09 | Compute most of Public/Exported access level in rustc_resolve | Lamb | -190/+300 |
| 2022-01-09 | Auto merge of #92534 - Aaron1011:hash-hir, r=petrochenkov | bors | -8/+0 |
| 2022-01-09 | Auto merge of #92690 - matthiaskrgr:rollup-rw0oz05, r=matthiaskrgr | bors | -552/+783 |
| 2022-01-09 | Rollup merge of #92608 - petrochenkov:doctrscope3, r=CraftSpider | Matthias Krüger | -9/+12 |
| 2022-01-09 | Rollup merge of #92573 - petrochenkov:ltrattr3, r=Aaron1011 | Matthias Krüger | -540/+761 |
| 2022-01-09 | Rollup merge of #92510 - inquisitivecrystal:foreign-block, r=cjgillot | Matthias Krüger | -3/+10 |
| 2022-01-09 | Auto merge of #92086 - petrochenkov:modchild, r=jackh726 | bors | -96/+108 |
| 2022-01-09 | eplace usages of vec![].into_iter with [].into_iter | Lucas Kent | -39/+34 |
| 2022-01-09 | Auto merge of #92497 - bjorn3:remove_lazy_meta_min_size, r=eddyb | bors | -32/+13 |
| 2022-01-09 | rustc_middle: Rename `Export` to `ModChild` and add some comments | Vadim Petrochenkov | -63/+65 |
| 2022-01-09 | rustc_metadata: Rename `item_children(_untracked)` to `module_children(_untra... | Vadim Petrochenkov | -12/+17 |
| 2022-01-09 | rustc_metadata: Optimize and document module children decoding | Vadim Petrochenkov | -26/+31 |
| 2022-01-08 | Auto merge of #91919 - Aaron1011:query-recursive-read, r=michaelwoerister | bors | -2/+76 |
| 2022-01-08 | Auto merge of #90639 - matthewjasper:leaf-def-cache, r=cjgillot | bors | -416/+449 |
| 2022-01-08 | Remove LazyMeta::min_size | bjorn3 | -32/+13 |
| 2022-01-07 | Rollup merge of #92650 - pierwill:patch-2, r=michaelwoerister | Eric Huss | -2/+2 |
| 2022-01-07 | Rollup merge of #92375 - wesleywiser:consolidate_debuginfo_msvc_check, r=mich... | Eric Huss | -64/+65 |
| 2022-01-07 | Rollup merge of #92336 - dtolnay:printstateself, r=michaelwoerister | Eric Huss | -24/+24 |
| 2022-01-07 | Fix accidental undo of 5e1972eba7e95e68f6fc05b07dec15fb1e553e1b | Noah Lev | -5/+6 |
| 2022-01-07 | Add query to avoid name comparison in `leaf_def` | Matthew Jasper | -89/+114 |
| 2022-01-07 | Move associated_item* providers to their own module | Matthew Jasper | -225/+234 |
| 2022-01-07 | Add `trait_item_def_id` to `AssocItem` | Matthew Jasper | -204/+197 |
| 2022-01-07 | Deserialization less in associated_item_def_ids | Matthew Jasper | -6/+11 |
| 2022-01-07 | Consolidate checking for msvc when generating debuginfo | Wesley Wiser | -64/+65 |
| 2022-01-07 | Fix typo in `StableCrateId` docs | pierwill | -2/+2 |
| 2022-01-07 | rustdoc: Introduce a resolver cache for sharing data between early doc link r... | Vadim Petrochenkov | -9/+12 |
| 2022-01-07 | expand: Import more AST enums | Vadim Petrochenkov | -35/+35 |
| 2022-01-07 | expand: Refactor `InvocationCollector` visitor for better code reuse | Vadim Petrochenkov | -500/+724 |
| 2022-01-07 | expand: Remove some unnecessary `self` mutability | Vadim Petrochenkov | -13/+10 |
| 2022-01-07 | expand: Rename some `AstFragment`s to match AST structures | Vadim Petrochenkov | -21/+21 |
| 2022-01-06 | Normalize generator-local types with unevaluated constants | Michael Goulet | -4/+6 |
| 2022-01-06 | Rollup merge of #92607 - petrochenkov:doctrscope2, r=cjgillot | Matthias Krüger | -99/+97 |
| 2022-01-06 | Rollup merge of #92559 - durin42:llvm-14-attributemask, r=nikic | Matthias Krüger | -5/+3 |
| 2022-01-06 | Rollup merge of #92504 - dtolnay:wall, r=jackh726 | Matthias Krüger | -1/+1 |
| 2022-01-06 | Rollup merge of #92417 - dtolnay:printimpl, r=jackh726 | Matthias Krüger | -3/+6 |
| 2022-01-06 | Rollup merge of #92207 - tmiasko:delay-drop-elaboration-bug, r=jackh726 | Matthias Krüger | -8/+7 |
| 2022-01-06 | Rollup merge of #91055 - lcnr:type_of-closures, r=nikomatsakis | Matthias Krüger | -13/+9 |