| Age | Commit message (Expand) | Author | Lines |
| 2025-02-10 | Rename rustc_middle::Ty::is_unsafe_ptr to is_raw_ptr | Bastian Kersting | -1/+1 |
| 2025-02-03 | Contracts core intrinsics. | Felix S. Klock II | -1/+5 |
| 2025-02-01 | Rollup merge of #130514 - compiler-errors:unsafe-binders, r=oli-obk | Matthias Krüger | -0/+4 |
| 2025-01-31 | Implement MIR, CTFE, and codegen for unsafe binders | Michael Goulet | -0/+4 |
| 2025-01-31 | Delay a bug when indexing unsized slices | Michael Goulet | -1/+6 |
| 2025-01-28 | Auto merge of #136203 - matthiaskrgr:rollup-1k0f44l, r=matthiaskrgr | bors | -81/+87 |
| 2025-01-28 | Implement MIR const trait stability checks | Deadbeef | -81/+87 |
| 2025-01-28 | Represent the raw pointer for a array length check as a new kind of fake borrow | Michael Goulet | -8/+10 |
| 2025-01-27 | Reapply "Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, r=da... | Michael Goulet | -5/+20 |
| 2025-01-19 | Rollup merge of #134858 - estebank:issue-81370, r=Noratrieb | Guillaume Gomez | -1/+9 |
| 2025-01-18 | Revert "Auto merge of #133734 - scottmcm:lower-indexing-to-ptrmetadata, r=dav... | Rémy Rakic | -20/+5 |
| 2025-01-18 | Revert "Auto merge of #134330 - scottmcm:no-more-rvalue-len, r=matthewjasper" | Rémy Rakic | -1/+2 |
| 2025-01-18 | Deduplicate logic | Esteban Küber | -14/+8 |
| 2025-01-18 | Structured suggestion for "missing `feature` intrinsic" | Esteban Küber | -0/+7 |
| 2025-01-18 | Structured suggestion for "missing `feature` in unstable fn call" | Esteban Küber | -1/+8 |
| 2025-01-14 | Do not consider traits that have unsatisfied const conditions to be condition... | Michael Goulet | -8/+18 |
| 2025-01-11 | rename `BitSet` to `DenseBitSet` | Rémy Rakic | -3/+3 |
| 2025-01-09 | Unify conditional and non const call error reporting | Michael Goulet | -2/+12 |
| 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 |