| Age | Commit message (Expand) | Author | Lines |
| 2022-11-24 | Use kw::Empty for elided lifetimes in path. | Camille GILLOT | -83/+281 |
| 2022-11-24 | Change how suggested lifetime args are computed. | Camille GILLOT | -55/+83 |
| 2022-11-24 | Record in HIR whether lifetime elision was succesful. | Camille GILLOT | -34/+50 |
| 2022-11-23 | Separate lifetime ident from resolution in HIR. | Camille GILLOT | -275/+179 |
| 2022-11-23 | Auto merge of #104776 - Dylan-DPC:rollup-rf4c2u0, r=Dylan-DPC | bors | -433/+516 |
| 2022-11-23 | Rollup merge of #104751 - nnethercote:fix-104620, r=petrochenkov | Dylan DPC | -3/+18 |
| 2022-11-23 | Rollup merge of #104744 - notriddle:notriddle/struct-fields-display-block, r=... | Dylan DPC | -0/+12 |
| 2022-11-23 | Rollup merge of #104721 - WaffleLapkin:deref-harder, r=oli-obk | Dylan DPC | -349/+312 |
| 2022-11-23 | Rollup merge of #104509 - spastorino:use-obligation-ctxt, r=lcnr | Dylan DPC | -63/+48 |
| 2022-11-23 | Rollup merge of #104286 - ozkanonur:fix-doc-bootstrap-recompilation, r=jyn514 | Dylan DPC | -14/+52 |
| 2022-11-23 | Rollup merge of #104269 - compiler-errors:hang-in-where-clause-sugg, r=lcnr | Dylan DPC | -4/+74 |
| 2022-11-23 | Auto merge of #103947 - camsteffen:place-clones, r=cjgillot | bors | -150/+134 |
| 2022-11-23 | Pass ObligationCtxt from enter_canonical_trait_query and use ObligationCtxt API | Santiago Pastorino | -16/+13 |
| 2022-11-23 | Call fully_solve_obligations instead of repeating code | Santiago Pastorino | -6/+11 |
| 2022-11-23 | Use ObligationCtxt intead of dyn TraitEngine | Santiago Pastorino | -47/+30 |
| 2022-11-23 | Auto merge of #102750 - the8472:opt-field-order, r=wesleywiser | bors | -31/+78 |
| 2022-11-23 | Auto merge of #104758 - Manishearth:rollup-rh1tfum, r=Manishearth | bors | -540/+902 |
| 2022-11-23 | Add fatal overflow test | Michael Goulet | -0/+41 |
| 2022-11-23 | Drive-by: Don't manually call evaluate_obligation_no_overflow | Michael Goulet | -3/+2 |
| 2022-11-23 | Do not need to account for overflow in predicate_can_apply | Michael Goulet | -1/+31 |
| 2022-11-22 | Rollup merge of #104750 - mati865:bump-fd-lock-again, r=jyn514 | Manish Goregaokar | -61/+22 |
| 2022-11-22 | Rollup merge of #104647 - RalfJung:alloc-strict-provenance, r=thomcc | Manish Goregaokar | -10/+19 |
| 2022-11-22 | Rollup merge of #104621 - YC:master, r=davidtwco | Manish Goregaokar | -3/+50 |
| 2022-11-22 | Rollup merge of #104612 - Swatinem:async-ret-y, r=estebank | Manish Goregaokar | -9/+9 |
| 2022-11-22 | Rollup merge of #104359 - Nilstrieb:plus-one, r=fee1-dead | Manish Goregaokar | -146/+259 |
| 2022-11-22 | Rollup merge of #103488 - oli-obk:impl_trait_for_tait, r=lcnr | Manish Goregaokar | -311/+543 |
| 2022-11-23 | Auto merge of #104752 - weihanglo:update-cargo, r=weihanglo | bors | -53/+10 |
| 2022-11-23 | Fix an ICE parsing a malformed attribute. | Nicholas Nethercote | -3/+18 |
| 2022-11-23 | Update cargo | Weihang Lo | -53/+10 |
| 2022-11-22 | Auto merge of #104743 - JohnTitor:rollup-9z9u7yd, r=JohnTitor | bors | -54/+218 |
| 2022-11-23 | Bump `fd-lock` in `bootstrap` again | Mateusz MikuĊa | -61/+22 |
| 2022-11-22 | add tests for field ordering optimization | The 8472 | -0/+21 |
| 2022-11-22 | fix tests, update size asserts | The 8472 | -26/+34 |
| 2022-11-22 | also sort fields by niche sizes to retain optimizations | The 8472 | -3/+16 |
| 2022-11-22 | group fields based on largest power of two dividing its size | The 8472 | -7/+3 |
| 2022-11-22 | optimize field ordering by grouping power-of-two arrays with larger types | The 8472 | -4/+13 |
| 2022-11-22 | rustdoc: make struct fields `display: block` | Michael Howell | -0/+12 |
| 2022-11-23 | Rollup merge of #104728 - WaffleLapkin:require-lang-items-politely, r=compile... | Yuki Okushi | -12/+14 |
| 2022-11-23 | Rollup merge of #104724 - WaffleLapkin:to_def_idn't, r=compiler-errors | Yuki Okushi | -14/+41 |
| 2022-11-23 | Rollup merge of #104722 - mejrs:stress, r=ChrisDenton | Yuki Okushi | -16/+51 |
| 2022-11-23 | Rollup merge of #104720 - notriddle:notriddle/popover-before-display-inline, ... | Yuki Okushi | -2/+0 |
| 2022-11-23 | Rollup merge of #104717 - GuillaumeGomez:test-projection-used-as-const-generi... | Yuki Okushi | -0/+31 |
| 2022-11-23 | Rollup merge of #102293 - ecnelises:aix.initial, r=davidtwco | Yuki Okushi | -1/+65 |
| 2022-11-23 | Rollup merge of #101368 - thomcc:wintls-noinline, r=ChrisDenton | Yuki Okushi | -9/+16 |
| 2022-11-22 | Auto merge of #104735 - the8472:simd-contains-fix, r=thomcc | bors | -4/+18 |
| 2022-11-22 | fix OOB access in SIMD impl of str.contains() | The 8472 | -4/+6 |
| 2022-11-22 | add test for issue 104726 | The 8472 | -0/+12 |
| 2022-11-22 | `rustc_ast_lowering`: remove `ref` patterns | Maybe Waffle | -300/+267 |
| 2022-11-22 | `rustc_arena`: remove a couple of `ref` patterns | Maybe Waffle | -10/+6 |
| 2022-11-22 | `rustc_parse`: remove `ref` patterns | Maybe Waffle | -39/+39 |