| Age | Commit message (Expand) | Author | Lines |
| 2022-05-16 | Force inline InternedObligationCauseCode creation | Oli Scherer | -4/+4 |
| 2022-05-13 | Avoid invoking the full `eq` infrastructure when all we want is to check a di... | Oli Scherer | -1/+3 |
| 2022-05-12 | Give the inliner some hints | Oli Scherer | -0/+2 |
| 2022-05-10 | Use InternedObligationCauseCode everywhere | Oli Scherer | -42/+33 |
| 2022-05-10 | Make `FunctionArgumentObligation` also use the "no allocation for misc" trick | Oli Scherer | -7/+17 |
| 2022-05-10 | Don't allocate misc obligation parents of derived obligations | Oli Scherer | -6/+7 |
| 2022-05-10 | Make the derived obligation cause parent private | Oli Scherer | -14/+21 |
| 2022-05-10 | Add a helper function for a common piece of code | Oli Scherer | -68/+32 |
| 2022-05-10 | Remove `clone_code` method | Oli Scherer | -31/+15 |
| 2022-05-10 | Remove another use of clone_code | Oli Scherer | -13/+11 |
| 2022-05-10 | Remove another use of clone_code | Oli Scherer | -14/+10 |
| 2022-05-10 | Move an extension trait method onto the type directly and reuse it | Oli Scherer | -46/+36 |
| 2022-05-10 | Don't lose an obligation cause | Oli Scherer | -2/+0 |
| 2022-05-10 | Remove some unnecessary clones | Oli Scherer | -26/+31 |
| 2022-05-10 | Simplify derived obligation peeling | Oli Scherer | -15/+5 |
| 2022-05-10 | Auto merge of #96715 - cjgillot:trait-alias-loop, r=compiler-errors | bors | -9/+24 |
| 2022-05-09 | Auto merge of #96838 - tmiasko:lazy-switch-sources, r=oli-obk | bors | -10/+11 |
| 2022-05-09 | Auto merge of #96473 - lcnr:querify-codegen-fn-attrs, r=cjgillot | bors | -122/+229 |
| 2022-05-09 | Point to the empty trait alias. | Camille GILLOT | -1/+10 |
| 2022-05-09 | Rollup merge of #96854 - jackh726:subst-cleanup, r=compiler-errors | Matthias Krüger | -73/+26 |
| 2022-05-09 | Rollup merge of #96844 - Badel2:actually-fix-96583, r=compiler-errors | Matthias Krüger | -11/+20 |
| 2022-05-09 | Rollup merge of #96008 - fmease:warn-on-useless-doc-hidden-on-assoc-impl-item... | Matthias Krüger | -2/+74 |
| 2022-05-09 | review | lcnr | -59/+73 |
| 2022-05-09 | only compute `codegen_fn_attrs` where needed | lcnr | -51/+154 |
| 2022-05-09 | only cache `codegen_fn_attrs` on disk if its local | lcnr | -1/+2 |
| 2022-05-09 | move `panic-in-drop=abort` check for `drop_in_place` | lcnr | -37/+29 |
| 2022-05-09 | store `codegen_fn_attrs` in crate metadata | lcnr | -34/+31 |
| 2022-05-09 | Auto merge of #96815 - SparrowLii:promote_const, r=oli-obk | bors | -42/+52 |
| 2022-05-09 | use `Result<(),()>` instead of Validity enum | SparrowLii | -54/+35 |
| 2022-05-09 | Auto merge of #95960 - jhpratt:remove-rustc_deprecated, r=compiler-errors | bors | -39/+49 |
| 2022-05-08 | Reorder erasing/replacing late bound vars and substs | Jack Huey | -20/+12 |
| 2022-05-08 | Remove subst_spanned | Jack Huey | -53/+14 |
| 2022-05-09 | Auto merge of #95542 - xFrednet:rfc-2383-expect-query, r=wesleywiser | bors | -19/+85 |
| 2022-05-08 | Use sparse representation of switch sources | Tomasz Miąsko | -10/+8 |
| 2022-05-08 | Avoid constructing switch sources unless necessary | Tomasz Miąsko | -3/+6 |
| 2022-05-08 | Warn on unused doc(hidden) on trait impl items | León Orell Valerian Liehr | -2/+74 |
| 2022-05-08 | Rollup merge of #96617 - ken-matsui:fix-incorrect-syntax-suggestion-with-pub-... | Matthias Krüger | -9/+19 |
| 2022-05-08 | Actually fix ICE from #96583 | Badel2 | -11/+20 |
| 2022-05-08 | Fixed typo in docs and correct doc links | Fridtjof Stoldt | -5/+5 |
| 2022-05-08 | Auto merge of #96770 - flip1995:fix-trait-type-in-bounds, r=cjgillot | bors | -7/+24 |
| 2022-05-08 | Move lint expectation checking into a separate query (RFC 2383) | xFrednet | -13/+68 |
| 2022-05-08 | Only assert for unstable expectation ids after conversion (RFC 2383) | xFrednet | -6/+17 |
| 2022-05-08 | Auto merge of #96155 - jackh726:param-heuristics-followup, r=estebank | bors | -87/+73 |
| 2022-05-08 | Fix incorrect syntax suggestion with `pub async fn` | Ken Matsui | -9/+19 |
| 2022-05-07 | Rollup merge of #96769 - Undin:remove-adx_target_feature-from-active, r=josht... | Matthias Krüger | -1/+0 |
| 2022-05-07 | Track if a where bound comes from a impl Trait desugar | flip1995 | -7/+24 |
| 2022-05-07 | Rollup merge of #96788 - JakobDegen:checked-binop, r=oli-obk | Guillaume Gomez | -4/+96 |
| 2022-05-07 | Rollup merge of #96760 - davidtwco:diagnostic-translation-vec, r=oli-obk | Guillaume Gomez | -70/+157 |
| 2022-05-07 | Rollup merge of #96581 - RalfJung:debug-size-align, r=oli-obk | Guillaume Gomez | -4/+24 |
| 2022-05-07 | optimize `promote_consts` by cache the validate check | SparrowLii | -41/+70 |