| Age | Commit message (Expand) | Author | Lines |
| 2022-07-11 | Deny floats even when adt_const_params is enabled | Michael Goulet | -1/+1 |
| 2022-07-09 | Auto merge of #98957 - RalfJung:zst-are-different, r=lcnr,oli-obk | bors | -14/+11 |
| 2022-07-09 | tweak names and output and bless | Ralf Jung | -3/+3 |
| 2022-07-09 | review feedback | Ralf Jung | -3/+3 |
| 2022-07-09 | don't allow ZST in ScalarInt | Ralf Jung | -14/+11 |
| 2022-07-09 | Rollup merge of #99050 - JakobDegen:storage-docs, r=tmiasko | Matthias Krüger | -1/+7 |
| 2022-07-09 | Rollup merge of #99022 - pierwill:always-storage-live-locals, r=pierwill | Matthias Krüger | -4/+4 |
| 2022-07-09 | Rollup merge of #98980 - RalfJung:const-prop-ice, r=oli-obk | Dylan DPC | -7/+11 |
| 2022-07-08 | Clarify MIR semantics of storage statements | Jakob Degen | -1/+7 |
| 2022-07-08 | interpret: only to track_caller in debug builds due to perf | Ralf Jung | -4/+4 |
| 2022-07-08 | Migrate MutDeref, TransientMutBorrow diagnostics | Michael Goulet | -18/+40 |
| 2022-07-08 | Migrate PanicNonStr, RawPtrComparison, RawPtrToInt diagnostics | Michael Goulet | -23/+30 |
| 2022-07-08 | Migrate StaticAccess diagnostic | Michael Goulet | -19/+21 |
| 2022-07-08 | Migrate NonConstOp diagnostic | Michael Goulet | -7/+9 |
| 2022-07-08 | Migrate unstable-in-stable diagnostic | Michael Goulet | -20/+25 |
| 2022-07-07 | MIR dataflow: Rename function to `always_storage_live_locals` | pierwill | -4/+4 |
| 2022-07-07 | Rollup merge of #98979 - RalfJung:more-alloc-range, r=oli-obk | Matthias Krüger | -2/+2 |
| 2022-07-07 | make a name less ambiguous | Ralf Jung | -7/+7 |
| 2022-07-07 | Rollup merge of #98930 - tmiasko:pub-basic-blocks, r=oli-obk | Dylan DPC | -2/+3 |
| 2022-07-07 | Rollup merge of #96856 - DrMeepster:fix_projection_validation, r=Icnr | Dylan DPC | -6/+43 |
| 2022-07-07 | `UnsafeCell` now has no niches, ever. | Oli Scherer | -4/+4 |
| 2022-07-07 | Make MIR basic blocks field public | Tomasz Miąsko | -2/+3 |
| 2022-07-06 | Auto merge of #98831 - RalfJung:no-more-unsized-locals, r=oli-obk | bors | -223/+243 |
| 2022-07-06 | Rollup merge of #98519 - TaKO8Ki:add-head-span-field-to-item-and-impl-item, r... | Guillaume Gomez | -3/+2 |
| 2022-07-06 | deduplicate some copy_op code | Ralf Jung | -87/+74 |
| 2022-07-06 | support passing unsized fn arguments | Ralf Jung | -12/+54 |
| 2022-07-06 | interpret: remove LocalValue::Unallocated, add Operand::Uninit | Ralf Jung | -149/+140 |
| 2022-07-06 | fix ICE in ConstProp | Ralf Jung | -5/+5 |
| 2022-07-06 | add track_caller to some interpreter functions | Ralf Jung | -0/+4 |
| 2022-07-06 | interpret: use AllocRange in UninitByteAccess | Ralf Jung | -2/+2 |
| 2022-07-06 | replace `guess_head_span` with `def_span` | Takayuki Maeda | -3/+2 |
| 2022-07-06 | Rollup merge of #98968 - RalfJung:scalar-sanity, r=oli-obk | Dylan DPC | -4/+3 |
| 2022-07-06 | Rollup merge of #98964 - RalfJung:typo, r=Dylan-DPC | Dylan DPC | -3/+3 |
| 2022-07-06 | fix projectionelem validation | DrMeepster | -6/+43 |
| 2022-07-06 | Auto merge of #98206 - eggyal:align-to-chalk-folding-api, r=jackh726 | bors | -5/+5 |
| 2022-07-06 | Update TypeVisitor paths | Alan Egerton | -6/+4 |
| 2022-07-05 | finally enable Scalar layout sanity checks | Ralf Jung | -4/+3 |
| 2022-07-05 | fix type in function name | Ralf Jung | -3/+3 |
| 2022-07-05 | Relax constrained generics to TypeVisitable | Alan Egerton | -2/+4 |
| 2022-07-05 | Rollup merge of #98888 - RalfJung:interpret-checked-bin, r=oli-obk | Matthias Krüger | -2/+23 |
| 2022-07-05 | Rollup merge of #98860 - RalfJung:dangling-int-ptr, r=davidtwco | Matthias Krüger | -3/+3 |
| 2022-07-05 | adjust dangling-int-ptr error message | Ralf Jung | -3/+3 |
| 2022-07-05 | always check overflow in CheckedBinOp in CTFE | Ralf Jung | -1/+10 |
| 2022-07-05 | Auto merge of #96862 - oli-obk:enum_cast_mir, r=RalfJung | bors | -27/+30 |
| 2022-07-05 | Rollup merge of #98847 - RalfJung:box-is-special, r=oli-obk | Dylan DPC | -12/+56 |
| 2022-07-05 | Rollup merge of #98811 - RalfJung:interpret-alloc-range, r=oli-obk | Dylan DPC | -36/+22 |
| 2022-07-04 | interpret: fix CheckedBinOp behavior when overflow checking is disabled | Ralf Jung | -2/+14 |
| 2022-07-05 | Auto merge of #98846 - RalfJung:alignment-is-a-type-thing, r=oli-obk | bors | -95/+118 |
| 2022-07-04 | Auto merge of #98627 - RalfJung:interpret-arith, r=lcnr | bors | -2/+17 |
| 2022-07-04 | extra assertion, extra sure | Ralf Jung | -0/+1 |