| Age | Commit message (Expand) | Author | Lines |
| 2022-12-15 | Always pass alignment and handle checking lazily | Oli Scherer | -9/+17 |
| 2022-12-15 | always check alignment during CTFE | Ralf Jung | -1/+1 |
| 2022-12-14 | Ensure no one constructs `AliasTy`s themselves | Oli Scherer | -2/+2 |
| 2022-12-14 | Auto merge of #104986 - compiler-errors:opaques, r=oli-obk | bors | -16/+10 |
| 2022-12-13 | Rollup merge of #105659 - JakobDegen:storage-live-borrow, r=davidtwco | Matthias Krüger | -2/+2 |
| 2022-12-13 | Combine identical alias arms | Michael Goulet | -14/+8 |
| 2022-12-13 | Combine projection and opaque into alias | Michael Goulet | -12/+12 |
| 2022-12-13 | squash OpaqueTy and ProjectionTy into AliasTy | Michael Goulet | -4/+4 |
| 2022-12-13 | ProjectionTy.item_def_id -> ProjectionTy.def_id | Michael Goulet | -1/+1 |
| 2022-12-13 | Use ty::OpaqueTy everywhere | Michael Goulet | -3/+3 |
| 2022-12-13 | Rename `assert_uninit_valid` intrinsic | Nilstrieb | -2/+4 |
| 2022-12-13 | Don't require owned data in `MaybeStorageLive` | Jakob Degen | -2/+2 |
| 2022-12-13 | Clarify what "this" means | Oli Scherer | -15/+3 |
| 2022-12-12 | interpret: add read_machine_[ui]size convenience methods | Ralf Jung | -6/+17 |
| 2022-12-11 | Rollup merge of #105537 - kadiwa4:remove_some_imports, r=fee1-dead | Matthias Krüger | -11/+0 |
| 2022-12-10 | compiler: remove unnecessary imports and qualified paths | KaDiWa | -11/+0 |
| 2022-12-09 | Remove unneeded field from `SwitchTargets` | Jakob Degen | -13/+3 |
| 2022-12-09 | Auto merge of #105486 - matthiaskrgr:rollup-o7c4l1c, r=matthiaskrgr | bors | -1/+5 |
| 2022-12-09 | Rollup merge of #105455 - lcnr:correct-reveal-in-validate, r=jackh726 | Matthias Krüger | -1/+5 |
| 2022-12-09 | Auto merge of #104449 - oli-obk:unhide_unknown_spans, r=estebank,RalfJung | bors | -18/+6 |
| 2022-12-08 | validate: use the correct reveal during opts | lcnr | -1/+5 |
| 2022-12-06 | Change CTFE backtraces to use `note` instead of `label` to preserve their order | Oli Scherer | -3/+3 |
| 2022-12-06 | Remove now-redundant file/line info from const backtraces | Oli Scherer | -15/+3 |
| 2022-12-06 | make retagging work even with 'unstable' places | Ralf Jung | -6/+49 |
| 2022-12-06 | Rollup merge of #105289 - Rageking8:fix-dupe-word-typos, r=cjgillot | Yuki Okushi | -1/+1 |
| 2022-12-06 | Rollup merge of #105207 - RalfJung:interpret-clobber-return, r=oli-obk | Yuki Okushi | -0/+4 |
| 2022-12-05 | fix dupe word typos | Rageking8 | -1/+1 |
| 2022-12-03 | interpret: clobber return place when calling function | Ralf Jung | -0/+4 |
| 2022-12-02 | Rollup merge of #105136 - RalfJung:deref-promotion-comment, r=oli-obk | Matthias Krüger | -4/+4 |
| 2022-12-01 | clarify comment on Deref promotion | Ralf Jung | -4/+4 |
| 2022-11-30 | Close accidental promotion check hole | Oli Scherer | -8/+6 |
| 2022-11-30 | Auto merge of #104905 - compiler-errors:normalization-changes, r=spastorino | bors | -4/+3 |
| 2022-11-28 | Make ObligationCtxt::normalize take cause by borrow | Michael Goulet | -4/+3 |
| 2022-11-28 | Rollup merge of #104982 - RalfJung:norun, r=oli-obk | Matthias Krüger | -6/+1 |
| 2022-11-27 | Rollup merge of #104976 - WaffleLapkin:move_comments, r=cjgillot | Matthias Krüger | -15/+16 |
| 2022-11-27 | Rollup merge of #104931 - Swatinem:async-pretty, r=eholk | Matthias Krüger | -1/+1 |
| 2022-11-27 | interpret: get rid of run() function | Ralf Jung | -6/+1 |
| 2022-11-27 | Prefer doc comments over `//`-comments in compiler | Maybe Waffle | -15/+16 |
| 2022-11-27 | Auto merge of #103917 - oli-obk:layout_math, r=RalfJung,lcnr | bors | -17/+10 |
| 2022-11-26 | Pretty-print generators with their `generator_kind` | Arpad Borsos | -1/+1 |
| 2022-11-25 | Auto merge of #99798 - JulianKnodt:ac1, r=BoxyUwU | bors | -0/+2 |
| 2022-11-25 | add FIXME's | Boxy | -0/+1 |
| 2022-11-25 | Add empty ConstKind::Abstract | kadmin | -0/+1 |
| 2022-11-25 | Move a comment to the right place | Oli Scherer | -3/+3 |
| 2022-11-25 | Make the ICEs in the mir typechecker have more spans helpful | Oli Scherer | -0/+1 |
| 2022-11-25 | More manual formatting | Oli Scherer | -5/+5 |
| 2022-11-25 | `rustc_layout_scalar_valid_range` can be applied to scalar pairs and affects ... | Oli Scherer | -9/+1 |
| 2022-11-25 | Simplify a bunch of trait ref obligation creations | Oli Scherer | -22/+9 |
| 2022-11-24 | Avoid `GenFuture` shim when compiling async constructs | Arpad Borsos | -10/+11 |
| 2022-11-22 | Use `tcx.require_lang_item` instead of unwrapping | Maybe Waffle | -4/+4 |