| Age | Commit message (Expand) | Author | Lines |
| 2023-07-25 | interpret: read_discriminant: only return VariantIdx | Ralf Jung | -35/+49 |
| 2023-07-25 | interpret: refactor projection code to work on a common trait, and use that f... | Ralf Jung | -1067/+685 |
| 2023-07-24 | interpret: support projecting into Place::Local without force_allocation | Ralf Jung | -251/+404 |
| 2023-07-22 | Auto merge of #113853 - cjgillot:split-validator, r=compiler-errors | bors | -188/+303 |
| 2023-07-21 | Revert "Auto merge of #113166 - moulins:ref-niches-initial, r=oli-obk" | David Tolnay | -71/+74 |
| 2023-07-21 | Auto merge of #113892 - RalfJung:uninit-undef-poison, r=wesleywiser | bors | -1/+1 |
| 2023-07-21 | Reuse MIR validator for inliner. | Camille GILLOT | -1/+1 |
| 2023-07-21 | Make type validation buffer errors. | Camille GILLOT | -25/+24 |
| 2023-07-21 | Separate CFG validation from type validation. | Camille GILLOT | -181/+297 |
| 2023-07-21 | Double check that hidden types match the expected hidden type | Oli Scherer | -3/+8 |
| 2023-07-21 | CTFE: move `target_{i, u}size_{min, max)` to `rustc_abi::TargetDataLayout` | Moulins | -11/+9 |
| 2023-07-21 | support non-null pointer niches in CTFE | Moulins | -64/+63 |
| 2023-07-20 | clarify MIR uninit vs LLVM undef/poison | Ralf Jung | -1/+1 |
| 2023-07-16 | Refactor checking function target features during const-eval | Eduardo Sánchez Muñoz | -18/+29 |
| 2023-07-16 | miri: fail when calling a function that requires an unavailable target feature | Eduardo Sánchez Muñoz | -0/+22 |
| 2023-07-14 | refactor(rustc_middle): Substs -> GenericArg | Mahdi Dibaiee | -104/+100 |
| 2023-07-12 | Re-format let-else per rustfmt update | Mark Rousskov | -33/+54 |
| 2023-07-11 | fix handling of alignment for dyn-sized places | Ralf Jung | -4/+6 |
| 2023-07-11 | miri: protect Move() function arguments during the call | Ralf Jung | -64/+180 |
| 2023-07-08 | Auto merge of #113376 - Nilstrieb:pointer-coercions-are-not-casts-because-tha... | bors | -23/+24 |
| 2023-07-07 | Rename `adjustment::PointerCast` and variants using it to `PointerCoercion` | Nilstrieb | -23/+24 |
| 2023-07-07 | miri: check that assignments do not self-overlap | Ralf Jung | -1/+6 |
| 2023-07-07 | Auto merge of #113308 - compiler-errors:poly-select, r=lcnr | bors | -14/+9 |
| 2023-07-06 | Rollup merge of #111917 - WaffleLapkin:validate_unalloc, r=oli-obk | Michael Goulet | -14/+9 |
| 2023-07-06 | Separate select calls that don't need a binder | Michael Goulet | -14/+9 |
| 2023-07-06 | Auto merge of #113377 - BoxyUwU:move_ty_ctors_to_ty, r=compiler-errors | bors | -10/+16 |
| 2023-07-05 | Move `TyCtxt::mk_x` to `Ty::new_x` where applicable | Boxy | -10/+16 |
| 2023-07-05 | Name the destructure_mir_constant query appropriately | Oli Scherer | -3/+3 |
| 2023-07-05 | Use options instead of errors if the errors are never needed | Oli Scherer | -13/+11 |
| 2023-07-05 | Remove a function argument that is always passed with the same value. | Oli Scherer | -1/+1 |
| 2023-07-05 | Specialize `DestructuredConstant` to its one user (pretty printing) | Oli Scherer | -1/+1 |
| 2023-07-05 | Specialize `try_destructure_mir_constant` for its sole user | Oli Scherer | -10/+9 |
| 2023-07-02 | Auto merge of #112718 - oli-obk:SIMD-destructure_mir_const, r=cjgillot | bors | -1/+0 |
| 2023-07-01 | Put `LayoutError` behind reference to shrink result | Nilstrieb | -4/+4 |
| 2023-06-28 | remove FIXME and add test | James Dietz | -2/+0 |
| 2023-06-28 | add check for ConstKind::Value(_) | James Dietz | -2/+7 |
| 2023-06-27 | Auto merge of #112693 - ericmarkmartin:use-more-placeref, r=spastorino | bors | -16/+12 |
| 2023-06-26 | Make simd_shuffle_indices use valtrees | Oli Scherer | -1/+0 |
| 2023-06-25 | use PlaceRef abstractions more consistently | Eric Mark Martin | -16/+12 |
| 2023-06-24 | Add enum for `can_access_statics` boolean | Nilstrieb | -15/+36 |
| 2023-06-20 | address most easy comments | Ziru Niu | -7/+5 |
| 2023-06-20 | merge `BorrowKind::Unique` into `BorrowKind::Mut` | Ziru Niu | -4/+5 |
| 2023-06-19 | Rollup merge of #112232 - fee1-dead-contrib:match-eq-const-msg, r=b-naber | Michael Goulet | -50/+79 |
| 2023-06-19 | Dedup some type checks in the MIR validator | Scott McMurray | -76/+57 |
| 2023-06-19 | Remove unchecked_add/sub/mul/shl/shr from CTFE/cg_ssa/cg_clif | Scott McMurray | -31/+0 |
| 2023-06-19 | Promote unchecked_add/sub/mul/shl/shr to mir::BinOp | Scott McMurray | -27/+74 |
| 2023-06-18 | Auto merge of #112638 - lqd:rpo, r=cjgillot | bors | -5/+2 |
| 2023-06-18 | Better error for non const `PartialEq` call generated by `match` | Deadbeef | -50/+79 |
| 2023-06-17 | Remove even more redundant builtin candidates | Michael Goulet | -1/+5 |
| 2023-06-17 | Simplify even more candidates | Michael Goulet | -2/+7 |