| Age | Commit message (Expand) | Author | Lines |
| 2022-10-27 | Accept `TyCtxt` instead of `TyCtxtAt` in `Ty::is_*` functions | Maybe Waffle | -9/+3 |
| 2022-10-25 | Auto merge of #102340 - JakobDegen:pass-manager-simplification, r=oli-obk | bors | -4/+0 |
| 2022-10-25 | Rollup merge of #103122 - ouz-a:mir-technical-debt, r=oli-obk | Dylan DPC | -5/+20 |
| 2022-10-23 | Split phase change from `MirPass` | Jakob Degen | -4/+0 |
| 2022-10-23 | remove misc_cast and validate types | ouz-a | -5/+20 |
| 2022-10-15 | Surround type with backticks | Gimgim | -1/+1 |
| 2022-10-13 | Delay intrinsic call until after we've determined the callee is a function | Michael Goulet | -3/+1 |
| 2022-10-08 | Rollup merge of #102675 - ouz-a:mir-technical-debt, r=oli-obk | Matthias Krüger | -9/+9 |
| 2022-10-07 | Change InferCtxtBuilder from enter to build | Cameron Steffen | -41/+39 |
| 2022-10-07 | Introduce TypeErrCtxt | Cameron Steffen | -3/+3 |
| 2022-10-06 | Remove `mir::CastKind::Misc` | ouz-a | -9/+9 |
| 2022-09-25 | Rollup merge of #102194 - fee1-dead-contrib:improve-const-drop, r=oli-obk | fee1-dead | -11/+19 |
| 2022-09-24 | Note the type when unable to drop values in compile time | Deadbeef | -11/+19 |
| 2022-09-23 | rename Unevaluated to UnevaluatedConst | b-naber | -2/+3 |
| 2022-09-22 | introduce mir::Unevaluated | b-naber | -13/+7 |
| 2022-09-22 | Auto merge of #100982 - fee1-dead-contrib:const-impl-requires-const-trait, r=... | bors | -2/+42 |
| 2022-09-20 | Auto merge of #99806 - oli-obk:unconstrained_opaque_type, r=estebank | bors | -1/+3 |
| 2022-09-19 | remove the `Subst` trait, always use `EarlyBinder` | lcnr | -1/+0 |
| 2022-09-17 | Auto merge of #98588 - b-naber:valtrees-cleanup, r=lcnr | bors | -30/+36 |
| 2022-09-16 | Revert "Revert "Rollup merge of #98582 - oli-obk:unconstrained_opaque_type, r... | Oli Scherer | -1/+3 |
| 2022-09-16 | do const trait method bounds check later in rustc_const_eval | Deadbeef | -2/+42 |
| 2022-09-14 | address review again | b-naber | -0/+2 |
| 2022-09-13 | Address code review comments | Eric Holk | -1/+1 |
| 2022-09-13 | fixes/working version | b-naber | -22/+31 |
| 2022-09-13 | use ty::Unevaluated<'tcx, ()> in type system | b-naber | -12/+7 |
| 2022-09-12 | dyn* through more typechecking and MIR | Eric Holk | -0/+7 |
| 2022-09-08 | Auto merge of #101437 - compiler-errors:erase-normalize-ordering, r=tmandry | bors | -14/+15 |
| 2022-09-06 | Generalize the Assume intrinsic statement to a general Intrinsic statement | Oli Scherer | -11/+9 |
| 2022-09-06 | Lower the assume intrinsic to a MIR statement | Oli Scherer | -0/+10 |
| 2022-09-05 | Normalize before erasing late-bound regions in equal_up_to_regions | Michael Goulet | -14/+15 |
| 2022-09-02 | Rollup merge of #100121 - Nilstrieb:mir-validator-param-env, r=oli-obk | Matthias Krüger | -5/+12 |
| 2022-08-30 | Refactor MIR phases | Jakob Degen | -20/+23 |
| 2022-08-29 | Only normalize once in mir validator typechecker | Nilstrieb | -15/+10 |
| 2022-08-29 | Try normalizing types without RevealAll in ParamEnv in mir validation | Nilstrieb | -8/+20 |
| 2022-08-29 | Rollup merge of #99027 - tmiasko:basic-blocks, r=oli-obk | Matthias Krüger | -8/+8 |
| 2022-08-26 | Rollup merge of #100738 - nidnogg:diagnostics_migr_const_eval, r=davidtwco | Michael Goulet | -105/+51 |
| 2022-08-26 | Replace `Body::basic_blocks()` with field access | Tomasz Miąsko | -8/+8 |
| 2022-08-25 | Auto merge of #100571 - cjgillot:mir-cost-visit, r=compiler-errors | bors | -16/+14 |
| 2022-08-21 | Fixed failing tests (missing labels), added automatic error code in create_fe... | nidnogg | -13/+4 |
| 2022-08-21 | Added several more migrations under ops.rs, failing some tests though | nidnogg | -97/+57 |
| 2022-08-21 | Migration on ops.rs for unstable const functions | nidnogg | -5/+3 |
| 2022-08-21 | Migrated Unallowed function pointer calls in interpreter/ops | nidnogg | -5/+2 |
| 2022-08-21 | Also validate types before inlining. | Camille GILLOT | -16/+14 |
| 2022-08-20 | Rollup merge of #100507 - cameron1024:suggest-lazy, r=compiler-errors | Matthias Krüger | -0/+5 |
| 2022-08-14 | suggest lazy-static for non-const statics | cameron | -0/+5 |
| 2022-08-12 | Erase regions better in promote_candidate | Michael Goulet | -7/+2 |
| 2022-08-04 | Add `traits::fully_solve_obligation` that acts like `traits::fully_normalize` | Michael Goulet | -10/+2 |
| 2022-08-03 | Rollup merge of #99746 - compiler-errors:more-trait-engine, r=jackh726 | Matthias Krüger | -2/+2 |
| 2022-08-01 | Remove trait_of_item query. | Camille GILLOT | -1/+1 |
| 2022-07-27 | Rollup merge of #99651 - compiler-errors:fn-and-raw-ptr-in-const-generics, r=... | Guillaume Gomez | -1/+1 |