| Age | Commit message (Expand) | Author | Lines |
| 2022-12-03 | Remove drop order twist of && and || and make them associative | est31 | -4/+21 |
| 2022-12-03 | Auto merge of #97485 - bjorn3:new_archive_writer, r=wesleywiser | bors | -515/+453 |
| 2022-12-03 | Make sure all input archives are unmapped before persisting the output archive | bjorn3 | -1/+7 |
| 2022-12-03 | Auto merge of #105133 - oli-obk:promoted_def_ids, r=cjgillot | bors | -12/+31 |
| 2022-12-03 | Rollup merge of #105188 - compiler-errors:verbose-ty-err, r=TaKO8Ki | Yuki Okushi | -3/+3 |
| 2022-12-03 | Rollup merge of #105181 - bhbs:skip-note, r=estebank | Yuki Okushi | -15/+20 |
| 2022-12-03 | Rollup merge of #104903 - spastorino:consolidate-normalize-in-report_projecti... | Yuki Okushi | -21/+48 |
| 2022-12-03 | Don't add a note for implementing a trait if its inner type is erroneous | bhbs | -15/+20 |
| 2022-12-02 | Don't elide information when printing E0308 with Zverbose | Michael Goulet | -3/+3 |
| 2022-12-02 | Define values and err as non mutable | Santiago Pastorino | -7/+7 |
| 2022-12-02 | Use ocx.normalize in report_projection_error | Santiago Pastorino | -17/+44 |
| 2022-12-02 | Rollup merge of #105185 - compiler-errors:normalize_fn_sig-in-err-ctxt, r=lcnr | Matthias Krüger | -67/+30 |
| 2022-12-02 | Rollup merge of #105163 - compiler-errors:afit-lt-arity, r=jackh726 | Matthias Krüger | -21/+18 |
| 2022-12-02 | Rollup merge of #105162 - compiler-errors:fn-sig-arity, r=cjgillot | Matthias Krüger | -5/+15 |
| 2022-12-02 | Rollup merge of #105144 - compiler-errors:normalization-doc, r=lcnr | Matthias Krüger | -39/+20 |
| 2022-12-02 | Rollup merge of #105026 - oToToT:aarch64-v8a, r=davidtwco | Matthias Krüger | -0/+5 |
| 2022-12-02 | Move normalize_fn_sig to TypeErrCtxt | Michael Goulet | -67/+30 |
| 2022-12-02 | Auto merge of #104863 - nnethercote:reduce-lint-macros, r=cjgillot | bors | -347/+160 |
| 2022-12-02 | Write to temp file before renaming to the final name | bjorn3 | -4/+22 |
| 2022-12-02 | Rollup merge of #105136 - RalfJung:deref-promotion-comment, r=oli-obk | Matthias Krüger | -4/+4 |
| 2022-12-02 | Rollup merge of #104614 - Nilstrieb:type-ascribe!, r=TaKO8Ki | Matthias Krüger | -0/+38 |
| 2022-12-01 | Properly synthesize fn sig value during cycle | Michael Goulet | -5/+15 |
| 2022-12-02 | Auto merge of #104963 - petrochenkov:noaddids2, r=cjgillot | bors | -184/+69 |
| 2022-12-02 | Inline and remove `early_lint_node`. | Nicholas Nethercote | -35/+12 |
| 2022-12-02 | Merge `builtins` into `EarlyLintPassObjects`. | Nicholas Nethercote | -15/+4 |
| 2022-12-02 | Check lifetime param count in collect_trait_impl_trait_tys | Michael Goulet | -21/+18 |
| 2022-12-02 | Remove some unnecessary `Send` bounds. | Nicholas Nethercote | -3/+2 |
| 2022-12-02 | Inline and remove `late_lint_pass_crate`. | Nicholas Nethercote | -14/+9 |
| 2022-12-02 | Inline and remove `late_lint_mod_pass`. | Nicholas Nethercote | -17/+8 |
| 2022-12-02 | Merge `builtins` into `LateLintPassObjects`. | Nicholas Nethercote | -13/+7 |
| 2022-12-02 | Remove six macros relating to lint definitions. | Nicholas Nethercote | -119/+103 |
| 2022-12-02 | Remove `-Zno-interleave-lints`. | Nicholas Nethercote | -119/+27 |
| 2022-12-02 | Eliminate four unnecessary lint macros. | Nicholas Nethercote | -40/+16 |
| 2022-12-01 | Document normalization methods on At | Michael Goulet | -38/+20 |
| 2022-12-01 | Drive-by: remove unused type alias | Michael Goulet | -1/+0 |
| 2022-12-01 | Auto merge of #105125 - matthiaskrgr:rollup-fr0snmj, r=matthiaskrgr | bors | -99/+107 |
| 2022-12-01 | rustc_ast_lowering: Stop lowering imports into multiple items | Vadim Petrochenkov | -139/+27 |
| 2022-12-01 | rustc_hir: Change representation of import paths to support multiple resolutions | Vadim Petrochenkov | -39/+36 |
| 2022-12-01 | clarify comment on Deref promotion | Ralf Jung | -4/+4 |
| 2022-12-01 | rustc_hir: Relax lifetime requirements on `Visitor::visit_path` | Vadim Petrochenkov | -11/+11 |
| 2022-12-01 | Rollup merge of #105106 - jhpratt:issue-105101, r=TaKO8Ki | Matthias Krüger | -1/+1 |
| 2022-12-01 | Rollup merge of #105087 - HKalbasi:master, r=eddyb | Matthias Krüger | -90/+98 |
| 2022-12-01 | Rollup merge of #105078 - TaKO8Ki:fix-105011, r=nnethercote | Matthias Krüger | -8/+8 |
| 2022-12-01 | Auto merge of #104975 - JakobDegen:custom_mir_let, r=oli-obk | bors | -83/+132 |
| 2022-12-01 | Fill in `def_span` when creating def ids. | Oli Scherer | -8/+29 |
| 2022-12-01 | Don't allow feeding a query cache entry twice | Oli Scherer | -4/+2 |
| 2022-12-01 | Auto merge of #104861 - nnethercote:attr-cleanups, r=petrochenkov | bors | -305/+221 |
| 2022-12-01 | Auto merge of #105095 - matthiaskrgr:rollup-9pu7vrx, r=matthiaskrgr | bors | -0/+6 |
| 2022-11-30 | Fix ICE from #105101 | Jacob Pratt | -1/+1 |
| 2022-11-30 | Rollup merge of #104895 - chenyukang:yukang/fix-104884-serde, r=TaKO8Ki | Matthias Krüger | -0/+6 |