| Age | Commit message (Expand) | Author | Lines |
| 2024-12-19 | Rollup merge of #133702 - RalfJung:single-variant, r=oli-obk | 许杰友 Jieyou Xu (Joe) | -17/+18 |
| 2024-12-18 | Auto merge of #134443 - joshtriplett:use-field-init-shorthand, r=lqd,tgross35... | bors | -1/+1 |
| 2024-12-18 | make no-variant types a dedicated Variants variant | Ralf Jung | -9/+13 |
| 2024-12-18 | Variants::Single: do not use invalid VariantIdx for uninhabited enums | Ralf Jung | -15/+12 |
| 2024-12-18 | make const qualif use mixed bitsets instead of dense bitsets | Rémy Rakic | -5/+7 |
| 2024-12-18 | Re-export more `rustc_span::symbol` things from `rustc_span`. | Nicholas Nethercote | -9/+7 |
| 2024-12-17 | Use field init shorthand where possible | Josh Triplett | -1/+1 |
| 2024-12-16 | rename rustc_attr to rustc_attr_parsing and create rustc_attr_data_structures | Jonathan Dönszelmann | -2/+2 |
| 2024-12-15 | Rollup merge of #134285 - oli-obk:push-vwrqsqlwnuxo, r=Urgau | Stuart Cook | -3/+2 |
| 2024-12-14 | Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, r=davidtwco,R... | bors | -7/+31 |
| 2024-12-14 | Add some convenience helper methods on `hir::Safety` | Oli Scherer | -3/+2 |
| 2024-12-14 | Rollup merge of #134191 - willcrichton:dev, r=RalfJung,lqd | Matthias Krüger | -12/+27 |
| 2024-12-13 | Update compiler/rustc_const_eval/src/interpret/step.rs | scottmcm | -1/+3 |
| 2024-12-13 | Auto merge of #134269 - matthiaskrgr:rollup-fkshwux, r=matthiaskrgr | bors | -10/+11 |
| 2024-12-13 | Rollup merge of #134058 - RalfJung:interpret-typing-env, r=lcnr | Matthias Krüger | -8/+9 |
| 2024-12-13 | Rollup merge of #133938 - nnethercote:rustc_mir_dataflow-renamings, r=oli-obk | Matthias Krüger | -2/+2 |
| 2024-12-13 | Don't retag the `PtrMetadata(&raw const *_n)` in slice indexing | Scott McMurray | -2/+9 |
| 2024-12-12 | Make BorrowSet/BorrowData fields accessible via public getters | Will Crichton | -6/+9 |
| 2024-12-12 | Move impl constness into impl trait header | Oli Scherer | -9/+12 |
| 2024-12-11 | Make some types and methods related to Polonius + Miri public. | Will Crichton | -8/+20 |
| 2024-12-11 | Require the `constness` query to only be invoked on things that can have cons... | Oli Scherer | -4/+5 |
| 2024-12-11 | Make a helper private | Oli Scherer | -1/+1 |
| 2024-12-10 | Rollup merge of #134010 - RalfJung:promoted-type-error-ice, r=oli-obk | León Orell Valerian Liehr | -18/+21 |
| 2024-12-10 | Rename some `Analysis` and `ResultsVisitor` methods. | Nicholas Nethercote | -2/+2 |
| 2024-12-09 | fix ICE on type error in promoted | Ralf Jung | -18/+21 |
| 2024-12-09 | interpret: clean up deduplicating allocation functions | Ralf Jung | -33/+20 |
| 2024-12-09 | interpret: reduce usage of TypingEnv::fully_monomorphized | Ralf Jung | -8/+9 |
| 2024-12-08 | Rollup merge of #133861 - shamb0:refactor_InterpCx_allocate_str, r=RalfJung | Matthias Krüger | -13/+32 |
| 2024-12-07 | Mention type parameter in more cases and don't suggest ~const bound already t... | Esteban Küber | -1/+1 |
| 2024-12-07 | Add allocate_bytes and refactor allocate_str in InterpCx for raw byte allocation | shamb0 | -13/+32 |
| 2024-12-06 | Remove polymorphization | Ben Kimock | -28/+6 |
| 2024-12-06 | Rollup merge of #133211 - Strophox:miri-correct-state-update-ffi, r=RalfJung | Matthias Krüger | -12/+60 |
| 2024-12-05 | extend Miri to correctly pass mutable pointers through FFI | Strophox | -12/+60 |
| 2024-12-03 | Rollup merge of #133681 - RalfJung:niches, r=wesleywiser | Matthias Krüger | -21/+29 |
| 2024-12-03 | Bounds-check with PtrMetadata instead of Len in MIR | Scott McMurray | -5/+20 |
| 2024-12-03 | Auto merge of #133321 - compiler-errors:const-checker, r=wesleywiser | bors | -6/+5 |
| 2024-12-01 | fix ICE when promoted has layout size overflow | Ralf Jung | -12/+16 |
| 2024-12-01 | fix safe-transmute handling of enums | Ralf Jung | -1/+1 |
| 2024-11-30 | report UB when the niche value refers to the untagged variant | Ralf Jung | -20/+28 |
| 2024-11-26 | Move `always_storage_live_locals`. | Nicholas Nethercote | -3/+2 |
| 2024-11-23 | remove is_trivially_const_drop | Ralf Jung | -5/+0 |
| 2024-11-22 | Check drop is trivial before checking ty needs drop | Michael Goulet | -1/+6 |
| 2024-11-22 | Deduplicate checking drop terminator | Michael Goulet | -92/+53 |
| 2024-11-22 | Gate const drop behind const_destruct feature, and fix const_precise_live_dro... | Michael Goulet | -82/+119 |
| 2024-11-22 | More comments, reverse polarity of structural check | Michael Goulet | -35/+41 |
| 2024-11-22 | Implement ~const Destruct in new solver | Michael Goulet | -39/+42 |
| 2024-11-22 | Get rid of HIR const checker | Michael Goulet | -6/+5 |
| 2024-11-20 | Auto merge of #131326 - dingxiangfei2009:issue-130836-attempt-2, r=nikomatsakis | bors | -0/+4 |
| 2024-11-20 | reduce false positives of tail-expr-drop-order from consumed values | Ding Xiang Fei | -0/+4 |
| 2024-11-20 | interpret: make typing_env field private | Ralf Jung | -7/+6 |