| Age | Commit message (Expand) | Author | Lines |
| 2025-04-30 | Rollup merge of #139059 - RalfJung:uses_power_alignment, r=nagisa | Matthias Krüger | -21/+14 |
| 2025-04-30 | ast: Remove token visiting from AST visitor | Vadim Petrochenkov | -214/+32 |
| 2025-04-30 | Inline check_method_argument_types and remove error_reported special casing (... | Michael Goulet | -62/+36 |
| 2025-04-30 | Inline check_method_argument_types to get rid of TupleArgumentsFlag arg | Michael Goulet | -23/+13 |
| 2025-04-30 | Move the error handling out of confirm_builtin_call | Michael Goulet | -31/+25 |
| 2025-04-30 | Rename lookup_method_in_trait and consolidate a Ident::with_dummy_span call | Michael Goulet | -26/+20 |
| 2025-04-29 | Parser: Document restrictions | Eric Huss | -0/+49 |
| 2025-04-30 | Auto merge of #127516 - nnethercote:simplify-LazyAttrTokenStream, r=petrochenkov | bors | -378/+399 |
| 2025-04-29 | canonical no type foldable :< | lcnr | -26/+4 |
| 2025-04-30 | Use `ThinVec` to shrink `LazyAttrTokenStreamInner`. | Nicholas Nethercote | -5/+7 |
| 2025-04-30 | Simplify `LazyAttrTokenStream`. | Nicholas Nethercote | -118/+138 |
| 2025-04-29 | Auto merge of #140023 - cjgillot:arena-try-alloc, r=BoxyUwU | bors | -33/+47 |
| 2025-04-29 | transmutability: uninit transition matches unit byte only | Tomasz Miąsko | -352/+173 |
| 2025-04-29 | confusings | Boxy | -52/+56 |
| 2025-04-29 | Don't FCW assoc consts in patterns | Boxy | -9/+10 |
| 2025-04-30 | stop check paren if has different ctx | bohan | -0/+16 |
| 2025-04-29 | Rollup merge of #140433 - BjoernLange:master, r=nnethercote | Trevor Gross | -0/+2 |
| 2025-04-29 | Rollup merge of #140432 - tgross35:target-config-docs-update, r=jieyouxu | Trevor Gross | -5/+4 |
| 2025-04-29 | Rollup merge of #140400 - durin42:llvm-21-getguid, r=cuviper | Trevor Gross | -4/+9 |
| 2025-04-29 | Rollup merge of #139909 - oli-obk:or-patterns, r=BoxyUwU | Trevor Gross | -122/+440 |
| 2025-04-29 | Rollup merge of #138344 - tgross35:x86-f16-math, r=Amanieu | Trevor Gross | -7/+3 |
| 2025-04-29 | Use a closure instead of three chained iterators | Oli Scherer | -72/+58 |
| 2025-04-29 | Fix for async drop ice with partly dropped tuple | Andrew Zhogin | -9/+15 |
| 2025-04-29 | Add comment to remind filtering unsupported features when adding new ones | WANG Rui | -0/+3 |
| 2025-04-29 | Filter out LoongArch features not supported by the current LLVM version | WANG Rui | -0/+6 |
| 2025-04-29 | Some style nits | Oli Scherer | -4/+3 |
| 2025-04-29 | Drop AST on a separate thread and prefetch `hir_crate` | John Kåre Alsaker | -3/+26 |
| 2025-04-29 | Remove global `next_disambiguator` state and handle it with a `DisambiguatorS... | John Kåre Alsaker | -75/+172 |
| 2025-04-29 | Reformat parameters to macros used by with-all-queries | Zalathar | -6/+15 |
| 2025-04-29 | Rename `rustc_query_append!` to `rustc_with_all_queries!` | Zalathar | -7/+21 |
| 2025-04-29 | Treat `ManuallyDrop` as `~const Destruct` | Oli Scherer | -0/+6 |
| 2025-04-29 | Add some comments | John Kåre Alsaker | -0/+7 |
| 2025-04-29 | mono collector: Reduce \# of locking while walking the graph | Piotr Osiewicz | -27/+38 |
| 2025-04-29 | miri: algebraic intrinsics: bring back float non-determinism | Ralf Jung | -2/+9 |
| 2025-04-29 | Also match on the lang item in confirmation | Oli Scherer | -10/+5 |
| 2025-04-29 | Always check the lang item first | Oli Scherer | -16/+8 |
| 2025-04-29 | Replace if/elseif chain with match | Oli Scherer | -62/+81 |
| 2025-04-29 | Replace the \01__gnu_mcount_nc to LLVM intrinsic for additional ARM targets | Björn Barwinski | -0/+2 |
| 2025-04-29 | Update documentation for `fn target_config` | Trevor Gross | -5/+4 |
| 2025-04-29 | Enable `target_has_reliable_f16_math` on x86 | Trevor Gross | -7/+3 |
| 2025-04-29 | Auto merge of #137940 - 1c3t3a:alignment-borrows-check, r=saethlin | bors | -32/+48 |
| 2025-04-29 | Delay checking of `#[rustc_no_implicit_autorefs]` for reason | Urgau | -4/+11 |
| 2025-04-29 | Add a jobserver proxy to ensure at least one token is always held | John Kåre Alsaker | -29/+149 |
| 2025-04-29 | Improve pretty-printing of braces. | Nicholas Nethercote | -17/+35 |
| 2025-04-29 | Adjust tests | Michael Goulet | -1/+3 |
| 2025-04-29 | Wf is not coinductive | Michael Goulet | -1/+4 |
| 2025-04-29 | Move various token stream things from `rustc_parse` to `rustc_ast`. | Nicholas Nethercote | -339/+338 |
| 2025-04-28 | Move `in_external_macro` to `SyntaxContext` | Jason Newcomb | -18/+28 |
| 2025-04-28 | Rollup merge of #140402 - lcnr:normalizes-to-certainty-yes, r=compiler-errors | Chris Denton | -32/+66 |
| 2025-04-28 | Rollup merge of #140323 - tgross35:cfg-unstable-float, r=Urgau | Chris Denton | -27/+192 |