| Age | Commit message (Expand) | Author | Lines |
| 2023-01-21 | Auto merge of #106977 - michaelwoerister:unord_id_collections, r=oli-obk | bors | -2/+5 |
| 2023-01-19 | Conditionally encode boolean | Michael Goulet | -2/+4 |
| 2023-01-19 | Encode whether foreign opaques are TAITs or not | Michael Goulet | -0/+1 |
| 2023-01-19 | Allow for more efficient sorting when exporting Unord collections. | Michael Woerister | -1/+1 |
| 2023-01-19 | Use UnordMap instead of FxHashMap in define_id_collections!(). | Michael Woerister | -2/+5 |
| 2023-01-18 | Rollup merge of #106917 - compiler-errors:const-closure-foreign, r=tmiasko | Michael Goulet | -11/+2 |
| 2023-01-17 | Rollup merge of #104505 - WaffleLapkin:no-double-spaces-in-comments, r=jackh726 | Matthias Krüger | -1/+1 |
| 2023-01-17 | Remove double spaces after dots in comments | Maybe Waffle | -1/+1 |
| 2023-01-16 | Encode const mir for closures if they're const | Michael Goulet | -11/+2 |
| 2023-01-14 | fix various subst_identity vs skip_binder | Kyle Matsuda | -3/+3 |
| 2023-01-14 | change impl_trait_ref query to return EarlyBinder; remove bound_impl_trait_re... | Kyle Matsuda | -8/+4 |
| 2023-01-14 | change usages of impl_trait_ref to bound_impl_trait_ref | Kyle Matsuda | -3/+9 |
| 2023-01-14 | change const_param_default query to return EarlyBinder; remove bound_const_pa... | Kyle Matsuda | -1/+1 |
| 2023-01-14 | change usages of const_param_default query to bound_const_param_default | Kyle Matsuda | -1/+1 |
| 2023-01-12 | attempt to make a minimal example work | Deadbeef | -0/+2 |
| 2023-01-09 | Use newtype for unused generic parameters | Nilstrieb | -1/+1 |
| 2023-01-05 | Fix `uninlined_format_args` for some compiler crates | nils | -12/+6 |
| 2022-12-28 | Auto merge of #106129 - compiler-errors:compare_method-tweaks, r=BoxyUwU | bors | -1/+1 |
| 2022-12-28 | better names and a comment | Michael Goulet | -1/+1 |
| 2022-12-25 | Rollup merge of #106137 - matthiaskrgr:clippy_style, r=jyn514 | Matthias Krüger | -1/+1 |
| 2022-12-25 | Rollup merge of #105955 - Nilstrieb:no-trivial-opt-wrappers-we-have-field-acc... | Matthias Krüger | -1/+1 |
| 2022-12-25 | fix more clippy::style findings | Matthias Krüger | -1/+1 |
| 2022-12-25 | fix some typos | KaDiWa | -1/+1 |
| 2022-12-20 | rustc: Remove needless lifetimes | Jeremy Stucki | -1/+1 |
| 2022-12-20 | Remove wrapper functions for some unstable options | Nilstrieb | -1/+1 |
| 2022-12-18 | Rollup merge of #105869 - matthiaskrgr:clone_on_copy, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2022-12-18 | don't restuct references just to reborrow | Matthias Krüger | -2/+2 |
| 2022-12-18 | don't clone Copy types | Matthias Krüger | -1/+1 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -1/+1 |
| 2022-12-13 | ProjectionTy.item_def_id -> ProjectionTy.def_id | Michael Goulet | -1/+1 |
| 2022-12-08 | Make encode_info_for_trait_item use queries instead of accessing the HIR | Santiago Pastorino | -12/+4 |
| 2022-11-26 | Auto merge of #104730 - petrochenkov:modchild5, r=cjgillot | bors | -7/+5 |
| 2022-11-24 | Auto merge of #104507 - WaffleLapkin:asderefsyou, r=wesleywiser | bors | -1/+1 |
| 2022-11-22 | rustc_metadata: Do not encode empty reexport lists | Vadim Petrochenkov | -7/+5 |
| 2022-11-21 | Unreserve braced enum variants in value namespace | Vadim Petrochenkov | -40/+21 |
| 2022-11-21 | Auto merge of #103491 - cjgillot:self-rpit, r=oli-obk | bors | -2/+2 |
| 2022-11-16 | Use `as_deref` in compiler (but only where it makes sense) | Maybe Waffle | -1/+1 |
| 2022-11-13 | Store a LocalDefId in hir::Variant & hir::Field. | Camille GILLOT | -5/+2 |
| 2022-11-13 | Store a LocalDefId in hir::GenericParam. | Camille GILLOT | -2/+1 |
| 2022-11-13 | Store LocalDefId in hir::Closure. | Camille GILLOT | -5/+5 |
| 2022-11-12 | Compute variance for opaques too. | Camille GILLOT | -2/+2 |
| 2022-11-01 | Auto merge of #103496 - petrochenkov:effvisdoc2, r=lqd | bors | -2/+1 |
| 2022-10-31 | Rewrite implementation of `#[alloc_error_handler]` | Amanieu d'Antras | -0/+1 |
| 2022-10-29 | Encode LangItem directly | Cameron Steffen | -13/+6 |
| 2022-10-29 | Rename some `OwnerId` fields. | Nicholas Nethercote | -16/+17 |
| 2022-10-29 | rustc_metadata: Encode even less doc comments | Vadim Petrochenkov | -2/+1 |
| 2022-10-29 | Auto merge of #102233 - petrochenkov:effvis, r=jackh726 | bors | -3/+2 |
| 2022-10-27 | Rollup merge of #103524 - petrochenkov:modchild4, r=cjgillot | Matthias Krüger | -6/+18 |
| 2022-10-26 | privacy: Rename "accessibility levels" to "effective visibilities" | Vadim Petrochenkov | -3/+2 |
| 2022-10-26 | Auto merge of #103284 - compiler-errors:const-sad, r=oli-obk | bors | -41/+15 |