| Age | Commit message (Expand) | Author | Lines |
| 2024-10-12 | mark InterpResult as must_use | Ralf Jung | -0/+1 |
| 2024-10-08 | coverage. Adapt to mcdc mapping formats introduced by llvm 19 | zhuyunxing | -31/+30 |
| 2024-10-08 | coverage. MCDC ConditionId start from 0 to keep with llvm 19 | zhuyunxing | -13/+3 |
| 2024-10-06 | various fixes for `naked_asm!` implementation | Folkert de Vries | -4/+28 |
| 2024-10-05 | clarify semantics of ConstantIndex MIR projection | Ralf Jung | -2/+4 |
| 2024-10-01 | Rollup merge of #130885 - RalfJung:interp-error-discard, r=oli-obk | Jubilee | -33/+220 |
| 2024-10-01 | make InterpResult a dedicated type to avoid accidentally discarding the error | Ralf Jung | -88/+220 |
| 2024-10-01 | Replace -Z default-hidden-visibility with -Z default-visibility | David Lattimore | -0/+11 |
| 2024-09-30 | panic when an interpreter error gets unintentionally discarded | Ralf Jung | -9/+64 |
| 2024-09-28 | tweak Const::identity_unevaluated name and docs | Ralf Jung | -1/+3 |
| 2024-09-28 | try to get rid of mir::Const::normalize | Ralf Jung | -12/+0 |
| 2024-09-25 | Auto merge of #130803 - cuviper:file-buffered, r=joshtriplett | bors | -2/+2 |
| 2024-09-24 | Dogfood `feature(file_buffered)` | Josh Stone | -2/+2 |
| 2024-09-24 | update doc comment | Lukas Markeffsky | -2/+4 |
| 2024-09-24 | be even more precise about "cast" vs "coercion" | Lukas Markeffsky | -5/+14 |
| 2024-09-24 | replace "cast" with "coercion" where applicable | Lukas Markeffsky | -1/+3 |
| 2024-09-24 | unify dyn* coercions with other pointer coercions | Lukas Markeffsky | -3/+0 |
| 2024-09-23 | Check vtable projections for validity in miri | Michael Goulet | -16/+19 |
| 2024-09-22 | Reformat using the new identifier sorting from rustfmt | Michael Goulet | -34/+34 |
| 2024-09-21 | Compute reachable locals as part of non_ssa_locals | Ben Kimock | -83/+41 |
| 2024-09-21 | Don't alloca for unused locals | Ben Kimock | -8/+111 |
| 2024-09-14 | Auto merge of #128543 - RalfJung:const-interior-mut, r=fee1-dead | bors | -4/+43 |
| 2024-09-13 | ProjectionElem and UnOp/BinOp dont need to be PartialOrd/Ord | Michael Goulet | -3/+3 |
| 2024-09-13 | Auto merge of #107251 - dingxiangfei2009:let-chain-rescope, r=jieyouxu | bors | -0/+3 |
| 2024-09-12 | Rollup merge of #130235 - compiler-errors:nested-if, r=michaelwoerister | Stuart Cook | -21/+17 |
| 2024-09-11 | Rollup merge of #130114 - eduardosm:needless-returns, r=compiler-errors | Jubilee | -4/+3 |
| 2024-09-11 | Also fix if in else | Michael Goulet | -5/+3 |
| 2024-09-11 | Simplify some nested if statements | Michael Goulet | -16/+14 |
| 2024-09-11 | rescope temp lifetime in let-chain into IfElse | Ding Xiang Fei | -0/+3 |
| 2024-09-10 | const-eval interning: accpt interior mutable pointers in final value (but kee... | Ralf Jung | -4/+43 |
| 2024-09-09 | Remove needless returns detected by clippy in the compiler | Eduardo Sánchez Muñoz | -4/+3 |
| 2024-09-08 | interpret: reset provenance on typed copies | Ralf Jung | -0/+13 |
| 2024-09-06 | Auto merge of #129999 - matthiaskrgr:rollup-pzr9c8p, r=matthiaskrgr | bors | -0/+3 |
| 2024-09-05 | Rollup merge of #129939 - RalfJung:rvalue-len, r=compiler-errors | Matthias Krüger | -0/+3 |
| 2024-09-05 | Rollup merge of #129706 - compiler-errors:scratch, r=estebank | Matthias Krüger | -1/+3 |
| 2024-09-03 | Don't ICE when dumping MIR of a synthetic coroutine body | Michael Goulet | -1/+3 |
| 2024-09-03 | explain why Rvalue::Len still exists | Ralf Jung | -0/+3 |
| 2024-09-03 | Rollup merge of #129926 - nnethercote:mv-SanityCheck-and-MirPass, r=cjgillot | Matthias Krüger | -62/+0 |
| 2024-09-03 | Move `MirPass` to `rustc_mir_transform`. | Nicholas Nethercote | -62/+0 |
| 2024-09-02 | chore: Fix typos in 'compiler' (batch 2) | Alexander Cyon | -4/+4 |
| 2024-08-31 | Auto merge of #129831 - matthiaskrgr:rollup-befq6zx, r=matthiaskrgr | bors | -1/+2 |
| 2024-08-31 | Rollup merge of #129684 - Strophox:miri-pass-pointer-to-ffi, r=RalfJung | Matthias Krüger | -1/+2 |
| 2024-08-30 | enable Miri to pass const pointers through FFI | Strophox | -1/+2 |
| 2024-08-30 | make `-Z mir-include-spans` a dedicated enum | Rémy Rakic | -1/+1 |
| 2024-08-30 | introduce `PrettyPrintMirOptions` for cosmetic MIR dump options | Rémy Rakic | -27/+89 |
| 2024-08-29 | Add `warn(unreachable_pub)` to `rustc_middle`. | Nicholas Nethercote | -5/+5 |
| 2024-08-28 | coverage: Rename `CodeRegion` to `SourceRegion` | Zalathar | -5/+5 |
| 2024-08-26 | Stop using a special inner body for the coroutine by-move body for async clos... | Michael Goulet | -19/+0 |
| 2024-08-25 | Rollup merge of #129091 - RalfJung:box_as_ptr, r=Amanieu | Matthias Krüger | -4/+2 |
| 2024-08-21 | fix comment on PlaceMention semantics | Ralf Jung | -1/+1 |