| Age | Commit message (Expand) | Author | Lines |
| 2025-02-06 | Revert "Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, r=dav... | Rémy Rakic | -20/+5 |
| 2025-02-06 | Revert "Auto merge of #134330 - scottmcm:no-more-rvalue-len, r=matthewjasper" | Rémy Rakic | -1/+2 |
| 2024-12-22 | Delete `Rvalue::Len` | Scott McMurray | -2/+1 |
| 2024-12-16 | rename rustc_attr to rustc_attr_parsing and create rustc_attr_data_structures | Jonathan Dönszelmann | -1/+1 |
| 2024-12-03 | Bounds-check with PtrMetadata instead of Len in MIR | Scott McMurray | -5/+20 |
| 2024-11-26 | Move `always_storage_live_locals`. | Nicholas Nethercote | -2/+1 |
| 2024-11-22 | Deduplicate checking drop terminator | Michael Goulet | -37/+38 |
| 2024-11-22 | Gate const drop behind const_destruct feature, and fix const_precise_live_dro... | Michael Goulet | -18/+26 |
| 2024-11-20 | reduce false positives of tail-expr-drop-order from consumed values | Ding Xiang Fei | -0/+1 |
| 2024-11-18 | Auto merge of #132460 - lcnr:questionable-uwu, r=compiler-errors | bors | -7/+4 |
| 2024-11-18 | use `TypingEnv` when no `infcx` is available | lcnr | -7/+4 |
| 2024-11-18 | rename rustc_const_stable_intrinsic -> rustc_intrinsic_const_stable_indirect | Ralf Jung | -1/+1 |
| 2024-11-13 | check_consts: fix error requesting feature gate when that gate is not actuall... | Ralf Jung | -10/+23 |
| 2024-11-12 | allow rustc_private feature in force-unstable-if-unmarked crates | Ralf Jung | -2/+19 |
| 2024-11-10 | ensure that all publicly reachable const fn have const stability info | Ralf Jung | -11/+13 |
| 2024-11-09 | require const_impl_trait gate for all conditional and trait const calls | Ralf Jung | -59/+30 |
| 2024-11-04 | when an intrinsic has a const-stable fallback body, we can easily expose it o... | Ralf Jung | -4/+12 |
| 2024-11-04 | add new rustc_const_stable_intrinsic attribute for const-stable intrinsics | Ralf Jung | -5/+8 |
| 2024-11-03 | Rename the FIXMEs, remove a few that dont matter anymore | Michael Goulet | -1/+2 |
| 2024-11-03 | Gate checking ~const bounds on const_trait_impl | Michael Goulet | -9/+3 |
| 2024-11-01 | Completely deny calling functions with const conditions in MIR const check un... | Michael Goulet | -12/+17 |
| 2024-11-01 | Double-check conditional constness in MIR | Michael Goulet | -26/+62 |
| 2024-10-31 | stop using `ParamEnv::reveal` while handling MIR | lcnr | -1/+1 |
| 2024-10-31 | `ConstCx` stop using `ParamEnv::reveal` | lcnr | -2/+2 |
| 2024-10-30 | Rollup merge of #132338 - nnethercote:rm-Engine, r=nnethercote | Matthias Krüger | -8/+4 |
| 2024-10-30 | Remove `Analysis::into_engine`. | Nicholas Nethercote | -8/+4 |
| 2024-10-29 | TypingMode :thinking: | lcnr | -2/+2 |
| 2024-10-26 | Deny calls to non-`#[const_trait]` methods in MIR constck | Deadbeef | -10/+19 |
| 2024-10-25 | tcx.is_const_fn doesn't work the way it is described, remove it | Ralf Jung | -1/+1 |
| 2024-10-25 | Re-do recursive const stability checks | Ralf Jung | -74/+148 |
| 2024-10-23 | nightly feature tracking: get rid of the per-feature bool fields | Ralf Jung | -2/+2 |
| 2024-10-22 | terminology: #[feature] *enables* a feature (instead of "declaring" or "activ... | Ralf Jung | -6/+6 |
| 2024-10-08 | fix/update teach_note from 'escaping mutable ref/ptr' const-check | Ralf Jung | -0/+1 |
| 2024-09-26 | Stabilize `const_refs_to_static` | Ding Xiang Fei | -1/+0 |
| 2024-09-24 | be even more precise about "cast" vs "coercion" | Lukas Markeffsky | -1/+2 |
| 2024-09-24 | unify dyn* coercions with other pointer coercions | Lukas Markeffsky | -6/+6 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -2/+2 |
| 2024-09-15 | also stabilize const_refs_to_cell | Ralf Jung | -60/+19 |
| 2024-09-15 | const_refs_to_cell: dont let mutable references sneak past the interior mutab... | Ralf Jung | -1/+12 |
| 2024-09-15 | clean up const checking of mutable references | Ralf Jung | -77/+2 |
| 2024-09-15 | stabilize const_mut_refs | Ralf Jung | -105/+6 |
| 2024-09-14 | Auto merge of #128543 - RalfJung:const-interior-mut, r=fee1-dead | bors | -2/+3 |
| 2024-09-13 | Rename and reorder lots of lifetimes. | Nicholas Nethercote | -3/+3 |
| 2024-09-10 | const-eval interning: accpt interior mutable pointers in final value (but kee... | Ralf Jung | -2/+3 |
| 2024-09-03 | Add `warn(unreachable_pub)` to `rustc_const_eval`. | Nicholas Nethercote | -3/+3 |
| 2024-08-31 | const fn stability checking: also check declared language features | Ralf Jung | -3/+1 |
| 2024-08-26 | Auto merge of #129508 - RalfJung:transient-locals, r=cjgillot | bors | -18/+32 |
| 2024-08-25 | dont iterate over the bitset | Ralf Jung | -4/+2 |
| 2024-08-25 | only visit reachable blocks, do not use a visitor | Ralf Jung | -28/+16 |
| 2024-08-24 | const checking: properly compute the set of transient locals | Ralf Jung | -17/+45 |