| Age | Commit message (Expand) | Author | Lines |
| 2025-06-30 | Avoid eagerly loading the hir fn sig | Oli Scherer | -14/+11 |
| 2025-06-30 | Merge `lower_trait_item` and `lower_impl_item` into `check_item_type` | Oli Scherer | -4/+26 |
| 2025-06-30 | Merge `lower_item` into `check_item_type` | Oli Scherer | -14/+75 |
| 2025-06-30 | Move lazy type alias checks to non-hir-wfck | Oli Scherer | -19/+25 |
| 2025-06-30 | Use predicate spans instead of whole item spans | Oli Scherer | -26/+15 |
| 2025-06-30 | Check variances in the non-hir wfchecker | Oli Scherer | -20/+13 |
| 2025-06-30 | Make variance wfcheck only use the HIR in the error path | Oli Scherer | -28/+26 |
| 2025-06-30 | Don't look at static items' HIR for wfcheck | Oli Scherer | -43/+29 |
| 2025-06-30 | Unconditionally run `check_item_type` on all items | Oli Scherer | -13/+4 |
| 2025-06-30 | Make check_param_wf only go through the HIR in the error path | Oli Scherer | -25/+25 |
| 2025-06-30 | Stop storing `Span` that is only used for checking for global bounds that do ... | Oli Scherer | -21/+14 |
| 2025-06-29 | Rollup merge of #142078 - sayantn:more-intrinsics, r=workingjubilee | Guillaume Gomez | -1/+2 |
| 2025-06-27 | Rollup merge of #139858 - oli-obk:new-const-traits-syntax, r=fee1-dead | Matthias Krüger | -5/+5 |
| 2025-06-27 | Report infer ty errors during hir ty lowering | Oli Scherer | -1/+0 |
| 2025-06-26 | Rollup merge of #142927 - compiler-errors:note-find-const, r=BoxyUwU | Michael Goulet | -1/+3 |
| 2025-06-26 | Change const trait bound syntax from ~const to [const] | Oli Scherer | -5/+5 |
| 2025-06-25 | rename RegionVariableOrigin::MiscVariable to RegionVariableOrigin::Misc | Michael Goulet | -1/+1 |
| 2025-06-25 | Remove some glob imports from the type system | Michael Goulet | -6/+10 |
| 2025-06-24 | Rewrite #[track_caller] | Jana Dönszelmann | -3/+6 |
| 2025-06-23 | Add note to find_const_ty_from_env | Michael Goulet | -1/+3 |
| 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 | -28/+4 |
| 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-22 | Rollup merge of #142458 - oli-obk:dyn-incompat, r=compiler-errors | Guillaume Gomez | -66/+0 |
| 2025-06-21 | Port `#[rustc_pub_transparent]` to the new attribute system | Pavel Grigorenko | -1/+6 |
| 2025-06-20 | Rollup merge of #142687 - cjgillot:less-hir_crate, r=oli-obk | Trevor Gross | -4/+2 |
| 2025-06-18 | Rollup merge of #142606 - azhogin:azhogin/async-drop-without-sync-drop-error,... | Trevor Gross | -1/+9 |
| 2025-06-18 | Make feature suggestion more consistent. | Camille GILLOT | -4/+2 |
| 2025-06-18 | AsyncDrop trait without sync Drop generates an error | Andrew Zhogin | -1/+9 |
| 2025-06-16 | hir_analysis: add `{Meta,Pointee}Sized` bounds | David Wood | -1/+2 |
| 2025-06-16 | trait_sel: `{Meta,Pointee}Sized` on `?Sized` types | David Wood | -0/+5 |
| 2025-06-15 | Add `simd_funnel_sh{l,r}` and `simd_round_ties_even` | sayantn | -1/+2 |
| 2025-06-14 | Rollup merge of #140593 - m-ou-se:some-temp, r=Nadrieril | Matthias Krüger | -7/+14 |
| 2025-06-13 | Auto merge of #142443 - matthiaskrgr:rollup-l1l6d0v, r=matthiaskrgr | bors | -2/+14 |
| 2025-06-13 | Merge unboxed trait object error suggestion into regular dyn incompat error | Oli Scherer | -66/+0 |
| 2025-06-13 | Add comment. | Mara Bos | -0/+3 |
| 2025-06-13 | Implement temporary lifetime extension for tuple ctors. | Mara Bos | -7/+11 |
| 2025-06-12 | add `extern "custom"` functions | Folkert de Vries | -2/+14 |
| 2025-06-12 | intrinsics: rename min_align_of to align_of | Ralf Jung | -5/+3 |
| 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 | Auto merge of #141700 - RalfJung:atomic-intrinsics-part2, r=bjorn3 | bors | -498/+457 |
| 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 | -7/+50 |
| 2025-06-07 | move all intrinsic typeck logic into the one big match | Ralf Jung | -495/+457 |