| Age | Commit message (Expand) | Author | Lines |
| 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 |
| 2024-08-21 | fix link in mir/mod | kyoto7250 | -1/+1 |
| 2024-08-19 | Auto merge of #122551 - RayMuir:copy_fmt, r=saethlin | bors | -1/+1 |
| 2024-08-18 | Added "copy" to Debug fmt for copy operands | RayMuir | -1/+1 |
| 2024-08-18 | rename AddressOf -> RawBorrow inside the compiler | Ralf Jung | -16/+16 |
| 2024-08-16 | mir/pretty: use `Option` instead of `Either<Once, Empty>` | Josh Stone | -9/+9 |
| 2024-08-14 | use the new Box methods in the interpreter | Ralf Jung | -4/+2 |
| 2024-08-06 | miri: make vtable addresses not globally unique | Ralf Jung | -94/+51 |
| 2024-08-02 | Rollup merge of #128494 - RalfJung:mir-lazy-lists, r=compiler-errors | Matthias Krüger | -9/+47 |
| 2024-08-01 | MIR required_consts, mentioned_items: ensure we do not forget to fill these l... | Ralf Jung | -9/+47 |
| 2024-08-01 | interpret: simplify pointer arithmetic logic | Ralf Jung | -88/+12 |
| 2024-08-01 | on a signed deref check, mention the right pointer in the error | Ralf Jung | -9/+7 |
| 2024-07-29 | Rollup merge of #128277 - RalfJung:offset_from_wildcard, r=oli-obk | Matthias Krüger | -6/+14 |
| 2024-07-29 | Reformat `use` declarations. | Nicholas Nethercote | -139/+122 |
| 2024-07-27 | improve dangling/oob errors and make them more uniform | Ralf Jung | -6/+14 |
| 2024-07-25 | Auto merge of #127042 - GrigorenkoPV:derivative, r=compiler-errors | bors | -9/+4 |
| 2024-07-22 | Auto merge of #127442 - saethlin:alloc-decoding-lock, r=oli-obk | bors | -89/+25 |
| 2024-07-21 | Explain why the new setup can't deadlock | Ben Kimock | -1/+13 |
| 2024-07-18 | valtree construction: keep track of which type was valtree-incompatible | Ralf Jung | -3/+5 |
| 2024-07-17 | Remove in-progress allocation decoding states | Ben Kimock | -89/+13 |
| 2024-07-16 | Auto merge of #127638 - adwinwhite:cache_string, r=oli-obk | bors | -6/+11 |
| 2024-07-15 | Rollup merge of #127758 - Zalathar:expression-used, r=oli-obk | Matthias Krüger | -13/+0 |
| 2024-07-15 | coverage: Restrict `ExpressionUsed` simplification to `Code` mappings | Zalathar | -13/+0 |