| Age | Commit message (Expand) | Author | Lines |
| 2024-03-27 | Eliminate `UbCheck` for non-standard libraries | DianQK | -2/+2 |
| 2024-03-27 | Rollup merge of #123021 - compiler-errors:coroutine-layout-lol, r=oli-obk | Guillaume Gomez | -2/+3 |
| 2024-03-26 | Auto merge of #111769 - saethlin:ctfe-backtrace-ctrlc, r=RalfJung | bors | -0/+2 |
| 2024-03-24 | Require coroutine kind type to be passed to TyCtxt::coroutine_layout | Michael Goulet | -2/+3 |
| 2024-03-24 | Address PR feedback | Scott McMurray | -0/+8 |
| 2024-03-24 | Rollup merge of #122937 - Zalathar:unbox, r=oli-obk | Matthias Krüger | -12/+7 |
| 2024-03-23 | Add+Use `mir::BinOp::Cmp` | Scott McMurray | -1/+9 |
| 2024-03-23 | refactor check_{lang,library}_ub: use a single intrinsic, put policy into lib... | Ralf Jung | -13/+6 |
| 2024-03-23 | rename MIR int2ptr casts to match library name | Ralf Jung | -2/+2 |
| 2024-03-23 | rename ptr::from_exposed_addr -> ptr::with_exposed_provenance | Ralf Jung | -1/+1 |
| 2024-03-23 | Unbox and unwrap the contents of `StatementKind::Coverage` | Zalathar | -12/+7 |
| 2024-03-22 | Ty::new_ref and Ty::new_ptr stop using TypeAndMut | Michael Goulet | -2/+2 |
| 2024-03-22 | Codegen const panic messages as function calls | Mark Rousskov | -24/+49 |
| 2024-03-22 | Rollup merge of #122820 - oli-obk:no_ord_def_id, r=estebank | Matthias Krüger | -3/+11 |
| 2024-03-22 | Rollup merge of #122542 - Zalathar:cleanup, r=oli-obk | Matthias Krüger | -3/+3 |
| 2024-03-22 | Rollup merge of #122537 - RalfJung:interpret-allocation, r=oli-obk | Matthias Krüger | -11/+31 |
| 2024-03-22 | coverage: Clean up marker statements that aren't needed later | Zalathar | -3/+3 |
| 2024-03-21 | Stop `ConstraintCategory` `Ord` impl from relying on `Ty`'s `Ord` impl. | Oli Scherer | -2/+10 |
| 2024-03-21 | Remove unnecessary Partial/Ord impl | Oli Scherer | -1/+1 |
| 2024-03-21 | Auto merge of #122568 - RalfJung:mentioned-items, r=oli-obk | bors | -0/+46 |
| 2024-03-20 | Auto merge of #120717 - compiler-errors:cap-closure-kind, r=oli-obk | bors | -14/+5 |
| 2024-03-20 | mentioned_items: record all callee and coerced closure types, whether they ar... | Ralf Jung | -6/+18 |
| 2024-03-20 | mentioned items: also handle closure-to-fn-ptr coercions | Ralf Jung | -1/+2 |
| 2024-03-20 | mentioned items: also handle vtables | Ralf Jung | -1/+5 |
| 2024-03-20 | avoid processing mentioned items that are also still used | Ralf Jung | -1/+1 |
| 2024-03-20 | collector: recursively traverse 'mentioned' items to evaluate their constants | Ralf Jung | -0/+29 |
| 2024-03-20 | Rollup merge of #121543 - onur-ozkan:clippy-args, r=oli-obk | Matthias Krüger | -2/+2 |
| 2024-03-20 | resolve clippy errors | onur-ozkan | -2/+2 |
| 2024-03-19 | Fix ABI for FnMut/Fn impls for async closures | Michael Goulet | -0/+1 |
| 2024-03-19 | Only split by-ref/by-move futures for async closures | Michael Goulet | -14/+4 |
| 2024-03-18 | Avoid various uses of `Option<Span>` in favor of using `DUMMY_SP` in the few ... | Oli Scherer | -13/+13 |
| 2024-03-17 | Print a backtrace in const eval if interrupted | Ben Kimock | -0/+2 |
| 2024-03-16 | Auto merge of #121926 - tgross35:f16-f128-step3-feature-gate, r=compiler-erro... | bors | -1/+21 |
| 2024-03-15 | interpret/allocation: fix aliasing issue in interpreter and refactor getters ... | Ralf Jung | -11/+31 |
| 2024-03-14 | coverage: Include recorded branch info in coverage instrumentation | Zalathar | -1/+8 |
| 2024-03-14 | Add compiler support for parsing `f16` and `f128` | Trevor Gross | -1/+21 |
| 2024-03-14 | coverage: Data structures for recording branch info during MIR building | Zalathar | -2/+51 |
| 2024-03-13 | coverage: Add `CoverageKind::BlockMarker` | Zalathar | -0/+16 |
| 2024-03-12 | Avoid lowering code under dead SwitchInt targets | Ben Kimock | -3/+126 |
| 2024-03-12 | s/mt/mutability/ | Oli Scherer | -2/+4 |
| 2024-03-12 | Ensure nested allocations in statics do not get deduplicated | Oli Scherer | -1/+11 |
| 2024-03-12 | Add `nested` bool to `DefKind::Static`. | Oli Scherer | -2/+4 |
| 2024-03-12 | Change `DefKind::Static` to a struct variant | Oli Scherer | -2/+2 |
| 2024-03-11 | Make `DefiningAnchor::Bind` only store the opaque types that may be constrain... | Oli Scherer | -0/+10 |
| 2024-03-11 | Auto merge of #122132 - nnethercote:diag-renaming3, r=nnethercote | bors | -12/+12 |
| 2024-03-11 | Rename `IntoDiagnosticArg` as `IntoDiagArg`. | Nicholas Nethercote | -12/+12 |
| 2024-03-10 | MIR printing: print the path of uneval'd const; refer to promoteds in a consi... | Ralf Jung | -4/+17 |
| 2024-03-08 | Distinguish between library and lang UB in assert_unsafe_precondition | Ben Kimock | -4/+12 |
| 2024-03-08 | Auto merge of #122182 - matthiaskrgr:rollup-gzimi4c, r=matthiaskrgr | bors | -72/+83 |
| 2024-03-08 | Rollup merge of #119365 - nbdd0121:asm-goto, r=Amanieu | Matthias Krüger | -72/+83 |