| Age | Commit message (Expand) | Author | Lines |
| 2024-03-20 | Replace `mir_built` query with a hook and use mir_const everywhere instead | Oli Scherer | -7/+6 |
| 2024-03-20 | coverage: Tidy imports in `rustc_mir_transform::coverage::counters` | Zalathar | -4/+4 |
| 2024-03-20 | coverage: Remove incorrect assertions from counter allocation | Zalathar | -31/+0 |
| 2024-03-19 | Add a few more comments | Michael Goulet | -0/+9 |
| 2024-03-19 | Fix ABI for FnMut/Fn impls for async closures | Michael Goulet | -5/+19 |
| 2024-03-19 | Only split by-ref/by-move futures for async closures | Michael Goulet | -124/+12 |
| 2024-03-19 | Auto merge of #122037 - oli-obk:more_new_intrinsics, r=Nilstrieb | bors | -10/+0 |
| 2024-03-19 | Auto merge of #122021 - oli-obk:delangitemification, r=compiler-errors | bors | -3/+1 |
| 2024-03-19 | Remove all checks of `IntrinsicDef::must_be_overridden` except for the actual... | Oli Scherer | -10/+0 |
| 2024-03-18 | Rollup merge of #122701 - compiler-errors:allocator-suspend, r=oli-obk | Matthias Krüger | -4/+10 |
| 2024-03-18 | Deduplicate `associated_body` and `body_id` | Oli Scherer | -3/+1 |
| 2024-03-18 | Detect allocator for box in must_not_suspend lint | Michael Goulet | -4/+10 |
| 2024-03-18 | Rollup merge of #122647 - RalfJung:box-to-raw-retag, r=oli-obk | Matthias Krüger | -8/+32 |
| 2024-03-18 | Avoid various uses of `Option<Span>` in favor of using `DUMMY_SP` in the few ... | Oli Scherer | -4/+4 |
| 2024-03-18 | add_retag: ensure box-to-raw-ptr casts are preserved for Miri | Ralf Jung | -8/+32 |
| 2024-03-18 | Rollup merge of #122656 - RalfJung:simplify-cfg, r=compiler-errors | Matthias Krüger | -6/+9 |
| 2024-03-17 | simplify_cfg: rename some passes so that they make more sense | Ralf Jung | -6/+9 |
| 2024-03-17 | some minor code simplifications | Matthias Krüger | -3/+2 |
| 2024-03-15 | Rollup merge of #122471 - RalfJung:const-eval-span, r=oli-obk | Matthias Krüger | -2/+5 |
| 2024-03-14 | preserve span when evaluating mir::ConstOperand | Ralf Jung | -2/+5 |
| 2024-03-14 | Rollup merge of #122322 - Zalathar:branch, r=oli-obk | Matthias Krüger | -47/+121 |
| 2024-03-14 | Rollup merge of #122368 - pavedroad:master, r=oli-obk | Matthias Krüger | -1/+1 |
| 2024-03-14 | Auto merge of #122243 - RalfJung:local-place-sanity-check, r=oli-obk | bors | -1/+1 |
| 2024-03-14 | coverage: Include recorded branch info in coverage instrumentation | Zalathar | -3/+68 |
| 2024-03-13 | Remove restrictions on small enum statements such as `Order`, `Option` or `Re... | DianQK | -1/+4 |
| 2024-03-13 | Addition of parentheses to clarify precedence | DianQK | -1/+1 |
| 2024-03-13 | Add comments for `UnreachableEnumBranching` | DianQK | -0/+38 |
| 2024-03-13 | coverage: Add `CoverageKind::BlockMarker` | Zalathar | -0/+5 |
| 2024-03-13 | coverage: Make `is_eligible_for_coverage` a hook method | Zalathar | -38/+41 |
| 2024-03-13 | Allow `rustc_mir_transform` to register hook providers | Zalathar | -6/+7 |
| 2024-03-12 | chore: remove repetitive words | pavedroad | -1/+1 |
| 2024-03-12 | Remove unused fields in some structures | Arthur Carcano | -4/+3 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -1/+7 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -1/+1 |
| 2024-03-11 | Rename `DecorateLint` as `LintDiagnostic`. | Nicholas Nethercote | -5/+5 |
| 2024-03-11 | Rename `IntoDiagnostic` as `Diagnostic`. | Nicholas Nethercote | -4/+4 |
| 2024-03-09 | add_retag: fix comment that does not match the code | Ralf Jung | -1/+1 |
| 2024-03-09 | Rename `UninhabitedEnumBranching` to `UnreachableEnumBranching` | DianQK | -12/+13 |
| 2024-03-08 | Distinguish between library and lang UB in assert_unsafe_precondition | Ben Kimock | -5/+22 |
| 2024-03-08 | Auto merge of #122182 - matthiaskrgr:rollup-gzimi4c, r=matthiaskrgr | bors | -10/+20 |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -10/+20 |
| 2024-03-08 | Auto merge of #120268 - DianQK:otherwise_is_last_variant_switchs, r=oli-obk | bors | -27/+57 |
| 2024-03-08 | Add a workaround for the `TailDuplicator` compile time overhead | DianQK | -5/+24 |
| 2024-03-08 | Update MIR with `MirPatch` in `UninhabitedEnumBranching` | DianQK | -37/+30 |
| 2024-03-07 | Get all variants to eliminate the default branching if we cannot get the layo... | DianQK | -0/+6 |
| 2024-03-07 | Replace the default branch with an unreachable branch If it is the last variant | DianQK | -6/+18 |
| 2024-03-07 | Auto merge of #121985 - RalfJung:interpret-return-place, r=oli-obk | bors | -2/+2 |
| 2024-03-05 | Auto merge of #121780 - nnethercote:diag-renaming2, r=davidtwco | bors | -6/+6 |
| 2024-03-05 | Rename `DiagnosticMessage` as `DiagMessage`. | Nicholas Nethercote | -6/+6 |
| 2024-03-04 | consistently use MPlaceTy for return places | Ralf Jung | -2/+2 |