| Age | Commit message (Expand) | Author | Lines |
| 2024-03-16 | Auto merge of #121926 - tgross35:f16-f128-step3-feature-gate, r=compiler-erro... | bors | -6/+5 |
| 2024-03-14 | Rollup merge of #122487 - GuillaumeGomez:rename-stmtkind-local, r=oli-obk | Matthias Krüger | -2/+2 |
| 2024-03-14 | Auto merge of #120943 - petrochenkov:somehir3, r=oli-obk | bors | -1/+13 |
| 2024-03-14 | Rename `hir::StmtKind::Local` into `hir::StmtKind::Let` | Guillaume Gomez | -2/+2 |
| 2024-03-14 | Enable `f16` and `f128` in HIR | Trevor Gross | -6/+5 |
| 2024-03-13 | Rollup merge of #122430 - GuillaumeGomez:link-to-local, r=TaKO8Ki | Matthias Krüger | -4/+4 |
| 2024-03-13 | Create some minimal HIR for associated opaque types | Vadim Petrochenkov | -1/+13 |
| 2024-03-13 | Generate link to `Local` in `hir::Let` documentation | Guillaume Gomez | -4/+4 |
| 2024-03-12 | Some comment nits | Oli Scherer | -1/+1 |
| 2024-03-12 | s/mt/mutability/ | Oli Scherer | -1/+1 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -0/+3 |
| 2024-03-12 | Add `nested` bool to `DefKind::Static`. | Oli Scherer | -0/+2 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -8/+11 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -1/+1 |
| 2024-03-08 | Rollup merge of #122103 - compiler-errors:taits-capture-everything, r=oli-obk | Matthias Krüger | -0/+2 |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -1/+14 |
| 2024-03-08 | Make TAITs capture all higher-ranked lifetimes in scope | Michael Goulet | -0/+2 |
| 2024-03-06 | Auto merge of #122045 - matthiaskrgr:rollup-5l3vpn7, r=matthiaskrgr | bors | -0/+2 |
| 2024-03-05 | Move visitor utils to `rustc_ast_ir` | Jason Newcomb | -2/+1 |
| 2024-03-05 | only set noalias on Box with the global allocator | Ralf Jung | -0/+2 |
| 2024-03-01 | Add `f16` and `f128` intrinsics to HIR | Trevor Gross | -0/+5 |
| 2024-02-29 | Rollup merge of #121681 - jswrenn:nix-visibility-analysis, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2024-02-27 | rename RPITIT from opaque to synthetic | Michael Goulet | -1/+3 |
| 2024-02-27 | safe transmute: revise safety analysis | Jack Wrenn | -1/+1 |
| 2024-02-24 | Add asm label support to AST and HIR | Gary Guo | -1/+14 |
| 2024-02-23 | Don't ICE on anonymous struct in enum variant | clubby789 | -0/+5 |
| 2024-02-21 | Fix liveness analysis in the presence of never patterns | Nadrieril | -2/+9 |
| 2024-02-20 | Rollup merge of #121256 - Jarcho:visitor2, r=oli-obk | Nilstrieb | -377/+458 |
| 2024-02-18 | Allow AST and HIR visitors to return `ControlFlow` | Jason Newcomb | -377/+458 |
| 2024-02-17 | Add more checks for `unnamed_field` during HIR analysis | clubby789 | -0/+6 |
| 2024-02-12 | Rollup merge of #120958 - ShoyuVanilla:remove-subst, r=oli-obk | Matthias Krüger | -1/+1 |
| 2024-02-12 | Rollup merge of #120950 - compiler-errors:miri-async-closurs, r=RalfJung,oli-obk | Matthias Krüger | -0/+6 |
| 2024-02-12 | Dejargnonize subst | Shoyu Vanilla | -1/+1 |
| 2024-02-12 | Lower anonymous structs or unions to HIR | Frank King | -1/+12 |
| 2024-02-11 | Rollup merge of #120872 - petrochenkov:opthirpar, r=cjgillot | Matthias Krüger | -1/+1 |
| 2024-02-11 | is_closure_like | Michael Goulet | -0/+6 |
| 2024-02-10 | hir: Remove `hir::Map::{opt_parent_id,parent_id,get_parent,find_parent}` | Vadim Petrochenkov | -1/+1 |
| 2024-02-10 | Remove unnecessary `min_specialization` after bootstrap | Zalathar | -1/+1 |
| 2024-02-09 | Rollup merge of #120693 - nnethercote:invert-diagnostic-lints, r=davidtwco | Matthias Krüger | -2/+0 |
| 2024-02-08 | Auto merge of #120767 - matthiaskrgr:rollup-0k8ib1c, r=matthiaskrgr | bors | -18/+23 |
| 2024-02-08 | inline a function that is only used in clippy | Oli Scherer | -4/+0 |
| 2024-02-07 | hir: Add some FIXMEs for future work | Vadim Petrochenkov | -0/+2 |
| 2024-02-07 | hir: Remove `fn opt_hir_id` and `fn opt_span` | Vadim Petrochenkov | -3/+3 |
| 2024-02-07 | hir: Make sure all `HirId`s have corresponding HIR `Node`s | Vadim Petrochenkov | -15/+18 |
| 2024-02-06 | Teach typeck/borrowck/solvers how to deal with async closures | Michael Goulet | -0/+1 |
| 2024-02-06 | Add CoroutineClosure to TyKind, AggregateKind, UpvarArgs | Michael Goulet | -0/+1 |
| 2024-02-06 | Make async closures directly lower to ClosureKind::CoroutineClosure | Michael Goulet | -0/+5 |
| 2024-02-06 | Invert diagnostic lints. | Nicholas Nethercote | -2/+0 |
| 2024-02-03 | hir: Remove the generic type parameter from `MaybeOwned` | Vadim Petrochenkov | -18/+7 |
| 2024-01-28 | hir: Use `InferArg` in `ArrayLen::Infer` | Vadim Petrochenkov | -4/+6 |