| Age | Commit message (Expand) | Author | Lines |
| 2025-09-16 | Remove Rvalue::Len. | Camille Gillot | -2/+1 |
| 2025-08-12 | Revert "Partially outline code inside the panic! macro". | Mara Bos | -3/+3 |
| 2025-07-31 | remove rustc_attr_data_structures | Jana Dönszelmann | -8/+7 |
| 2025-07-28 | Rename trait_of_item -> trait_of_assoc | Cameron Steffen | -1/+1 |
| 2025-07-28 | use let chains in ast, borrowck, codegen, const_eval | Kivooeo | -4/+4 |
| 2025-07-01 | Remove support for dyn* | Michael Goulet | -8/+0 |
| 2025-06-27 | Rollup merge of #139858 - oli-obk:new-const-traits-syntax, r=fee1-dead | Matthias Krüger | -1/+1 |
| 2025-06-26 | clarify and unify 'transient mutable borrow' errors | Ralf Jung | -5/+1 |
| 2025-06-26 | Change const trait bound syntax from ~const to [const] | Oli Scherer | -1/+1 |
| 2025-06-18 | Make feature suggestion more consistent. | Camille GILLOT | -8/+0 |
| 2025-06-10 | const_eval: fix some outdated comments | Ralf Jung | -4/+1 |
| 2025-06-08 | Dont make ObligationCtxts with diagnostics unnecessarily | Michael Goulet | -1/+1 |
| 2025-06-03 | Add `iter` macro | Oli Scherer | -6/+1 |
| 2025-05-09 | don't depend on rustc_attr_parsing if rustc_data_structures will do | mejrs | -7/+10 |
| 2025-04-17 | Remove some unnecessary lifetimes. | Nicholas Nethercote | -1/+1 |
| 2025-04-02 | Use return_result_from_ensure_ok a bit more | Michael Goulet | -1/+1 |
| 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 |