| Age | Commit message (Expand) | Author | Lines |
| 2025-06-27 | Rollup merge of #139858 - oli-obk:new-const-traits-syntax, r=fee1-dead | Matthias Krüger | -1/+1 |
| 2025-06-26 | Change const trait bound syntax from ~const to [const] | Oli Scherer | -1/+1 |
| 2025-06-25 | rename RegionVariableOrigin::MiscVariable to RegionVariableOrigin::Misc | Michael Goulet | -1/+1 |
| 2025-06-23 | unsupported_calling_conventions: print which ABI this is about | Ralf Jung | -1/+3 |
| 2025-06-23 | Clarify note in rustc_ast_lowering still applies | Jubilee Young | -2/+3 |
| 2025-06-23 | compiler: Remove unsupported_fn_ptr_calling_conventions lint | Jubilee Young | -26/+2 |
| 2025-06-23 | hir_analysis: Avoid repeating unsupported ABI errors | Jubilee Young | -8/+2 |
| 2025-06-23 | move naked checks out of check_attr.rs | Jana Dönszelmann | -1/+0 |
| 2025-06-23 | rewrite #[naked] parser | Jana Dönszelmann | -1/+2 |
| 2025-06-21 | Port `#[rustc_pub_transparent]` to the new attribute system | Pavel Grigorenko | -1/+6 |
| 2025-06-12 | add `extern "custom"` functions | Folkert de Vries | -1/+13 |
| 2025-06-09 | hir_analysis: Elaborate on lint strategy for unsupported ABIs | Jubilee | -1/+3 |
| 2025-06-09 | compiler: Fix reusing same lint on fn ptrs with newly-deprecated ABIs | Jubilee Young | -16/+24 |
| 2025-06-09 | Auto merge of #141435 - RalfJung:unsupported_calling_conventions, r=workingju... | bors | -18/+51 |
| 2025-06-08 | add specific help messages for stdcall and cdecl | Ralf Jung | -4/+22 |
| 2025-06-08 | add (back) unsupported_calling_conventions lint to reject more invalid callin... | Ralf Jung | -17/+32 |
| 2025-06-08 | Auto merge of #142074 - oli-obk:its-finally-gone, r=petrochenkov | bors | -0/+42 |
| 2025-06-06 | Rollup merge of #142103 - scottmcm:fieldidx-in-interp, r=oli-obk | Guillaume Gomez | -1/+1 |
| 2025-06-05 | Update `InterpCx::project_field` to take `FieldIdx` | Scott McMurray | -1/+1 |
| 2025-06-05 | Replace some `Option<Span>` with `Span` and use DUMMY_SP instead of None | Oli Scherer | -1/+1 |
| 2025-06-05 | wfcheck closures | Oli Scherer | -0/+9 |
| 2025-06-05 | Move generic arg checks from the hir item types visitor to ty wfcheck | Oli Scherer | -1/+23 |
| 2025-06-05 | Move opaque type checks from the hir item types visitor onto the wfcheck of t... | Oli Scherer | -0/+11 |
| 2025-05-28 | Stabilise `repr128` | beetrees | -14/+1 |
| 2025-05-27 | Rename unpack to kind | Michael Goulet | -2/+2 |
| 2025-05-19 | Rollup merge of #140874 - mejrs:rads, r=WaffleLapkin | Stuart Cook | -6/+5 |
| 2025-05-17 | check coroutines with TypingMode::Borrowck to avoid cyclic reasoning | lcnr | -7/+13 |
| 2025-05-09 | don't depend on rustc_attr_parsing if rustc_data_structures will do | mejrs | -6/+5 |
| 2025-04-26 | Remove redundant check | mejrs | -1/+0 |
| 2025-04-15 | Move `name` field from `AssocItem` to `AssocKind` variants. | Nicholas Nethercote | -2/+2 |
| 2025-04-15 | Move `opt_rpitit_info` field to `hir::AssocKind::Type`. | Nicholas Nethercote | -3/+3 |
| 2025-04-14 | Move `has_self` field to `hir::AssocKind::Fn`. | Nicholas Nethercote | -2/+2 |
| 2025-04-10 | Rollup merge of #139530 - oli-obk:rustc-intrinsic-cleanup, r=RalfJung | Matthias Krüger | -11/+0 |
| 2025-04-09 | Use a query rather than recomputing the tail repeatedly | Michael Goulet | -23/+3 |
| 2025-04-09 | Rigidly project missing item due to guaranteed impossible sized predicate | Michael Goulet | -6/+2 |
| 2025-04-09 | Remove some dead or leftover code related to rustc-intrinsic abi removal | Oli Scherer | -11/+0 |
| 2025-04-08 | borrowck typeck children together with their parent | lcnr | -5/+5 |
| 2025-04-06 | remove compiler support for `extern "rust-intrinsic"` blocks | Skgland | -59/+49 |
| 2025-04-02 | Move methods from `Map` to `TyCtxt`, part 5. | Nicholas Nethercote | -7/+5 |
| 2025-03-15 | Stop relying on rustc_type_ir in non-type-system crates | Michael Goulet | -3/+2 |
| 2025-03-15 | Fold visit into ty | Michael Goulet | -1/+1 |
| 2025-03-15 | Squash fold into ty | Michael Goulet | -3/+3 |
| 2025-03-12 | Move methods from `Map` to `TyCtxt`, part 4. | Nicholas Nethercote | -2/+2 |
| 2025-03-11 | Implement `#[define_opaque]` attribute for functions. | Oli Scherer | -13/+7 |
| 2025-03-06 | Rollup merge of #137808 - jswrenn:droppy-unsafe-fields, r=nnethercote | Michael Goulet | -32/+0 |
| 2025-03-03 | Don't typeck during WF, instead check outside of WF in check_crate | Michael Goulet | -6/+1 |
| 2025-02-28 | Do not require that unsafe fields lack drop glue | Jack Wrenn | -32/+0 |
| 2025-02-25 | Don't require method impls for methods with `Self:Sized` bounds for impls for... | Oli Scherer | -1/+40 |
| 2025-02-24 | Introduce new-style attribute parsers for several attributes | Jana Dönszelmann | -14/+21 |
| 2025-02-24 | Change span field accesses to method calls | Jana Dönszelmann | -2/+2 |