| Age | Commit message (Expand) | Author | Lines |
| 2023-10-16 | address review comment | Esteban Küber | -90/+125 |
| 2023-10-16 | Preserve unicode escapes in format string literals when pretty-printing AST | Paul Gey | -2/+2 |
| 2023-10-16 | Add MonoItems and Instance to stable_mir | Celina G. Val | -45/+310 |
| 2023-10-16 | Auto merge of #116804 - matthiaskrgr:rollup-m2qm8ul, r=matthiaskrgr | bors | -24/+72 |
| 2023-10-16 | Make `rustc_onunimplemented` export path agnostic | Nilstrieb | -4/+7 |
| 2023-10-16 | Rollup merge of #116802 - compiler-errors:anchor-opaque-wf, r=oli-obk | Matthias Krüger | -8/+8 |
| 2023-10-16 | Rollup merge of #116257 - estebank:issue-101351, r=b-naber | Matthias Krüger | -16/+64 |
| 2023-10-16 | Auto merge of #116731 - Alexendoo:hash-untracked-state, r=oli-obk | bors | -7/+25 |
| 2023-10-16 | Address review comments | Matthew Jasper | -62/+56 |
| 2023-10-16 | Fix inline const pattern unsafety checking in THIR | Matthew Jasper | -27/+104 |
| 2023-10-16 | Remove `DefiningAnchor::Bubble` from opaque wf check | Michael Goulet | -8/+8 |
| 2023-10-16 | Fix outlives suggestion for GAT in RPITIT | Michael Goulet | -33/+27 |
| 2023-10-16 | Auto merge of #116550 - nnethercote:rustc-features-more, r=Nilstrieb | bors | -284/+246 |
| 2023-10-16 | Auto merge of #114330 - RalfJung:dagling-ptr-deref, r=oli-obk | bors | -351/+347 |
| 2023-10-16 | Avoid unnecessary renumbering | Jonáš Fiala | -0/+4 |
| 2023-10-16 | Auto merge of #116724 - RalfJung:alloc-bytes, r=oli-obk | bors | -24/+5 |
| 2023-10-16 | Add `PreservedSymbols` from LLVM to LTO. | DianQK | -1/+103 |
| 2023-10-16 | coverage: Explain why we temporarily steal `pending_dups` | Zalathar | -6/+20 |
| 2023-10-16 | coverage: Inline `span_bcb_dominates` | Zalathar | -14/+11 |
| 2023-10-16 | coverage: Inline `prev_starts_after_next` | Zalathar | -10/+5 |
| 2023-10-16 | coverage: Move `take_curr` and note what its callers are doing | Zalathar | -9/+9 |
| 2023-10-16 | coverage: Call `prev`/`curr` less in other places | Zalathar | -11/+17 |
| 2023-10-16 | coverage: Call `prev`/`curr` less in `to_refined_spans` | Zalathar | -22/+20 |
| 2023-10-16 | coverage: Remove redundant field `prev_expn_span` | Zalathar | -7/+2 |
| 2023-10-16 | coverage: Flatten guard logic in `maybe_flush_pending_dups` | Zalathar | -15/+16 |
| 2023-10-16 | coverage: Flatten guard logic in `maybe_push_macro_name_span` | Zalathar | -20/+17 |
| 2023-10-16 | coverage: Simplify `push_refined_span` | Zalathar | -12/+8 |
| 2023-10-16 | coverage: Use `DUMMY_SP` instead of creating a dummy span manually | Zalathar | -4/+4 |
| 2023-10-16 | coverage: Rename `hold_pending_dups_unless_dominated` to `update_pending_dups` | Zalathar | -2/+2 |
| 2023-10-16 | coverage: Rename `check_pending_dups` to `maybe_flush_pending_dups` | Zalathar | -2/+2 |
| 2023-10-16 | coverage: Rename `check_invoked_macro_name_span` to `maybe_push_macro_name_span` | Zalathar | -5/+7 |
| 2023-10-16 | Rollup merge of #115196 - chenyukang:yukang-fix-86094, r=estebank | Matthias Krüger | -6/+65 |
| 2023-10-16 | Rename `ACTIVE_FEATURES` as `UNSTABLE_FEATURES`. | Nicholas Nethercote | -193/+191 |
| 2023-10-16 | Remove `rustc_feature::State`. | Nicholas Nethercote | -97/+61 |
| 2023-10-15 | Rollup merge of #116522 - bvanjoi:fix-115599, r=oli-obk | Matthias Krüger | -0/+8 |
| 2023-10-15 | update MIR place semantics UB comment | Ralf Jung | -12/+9 |
| 2023-10-15 | separate bounds-check from alignment check | Ralf Jung | -112/+76 |
| 2023-10-15 | more precise error for 'based on misaligned pointer' case | Ralf Jung | -34/+50 |
| 2023-10-15 | avoid computing misalignment if we won't act on it | Ralf Jung | -6/+11 |
| 2023-10-15 | place evaluation: require the original pointer to be aligned if an access hap... | Ralf Jung | -207/+188 |
| 2023-10-15 | avoid re-checking the offset while iterating an array/slice | Ralf Jung | -15/+54 |
| 2023-10-15 | don't UB on dangling ptr deref, instead check inbounds on projections | Ralf Jung | -55/+49 |
| 2023-10-15 | Format macro const literals with pretty printer | DaniPopes | -15/+17 |
| 2023-10-15 | Suggest adding `return` if the type of unused semi return value can coerce to... | yukang | -6/+65 |
| 2023-10-15 | Auto merge of #116688 - compiler-errors:rustfmt-up, r=WaffleLapkin,Nilstrieb | bors | -2231/+3123 |
| 2023-10-15 | Removes the useless DisableSimplifyLibCalls parameter. | DianQK | -19/+6 |
| 2023-10-15 | Restore `#![no_builtins]` crates participation in LTO. | DianQK | -50/+6 |
| 2023-10-15 | use `PatKind::error` when an ADT const value has violation | bohan | -0/+8 |
| 2023-10-15 | Rollup merge of #116748 - scottmcm:oops-typo, r=fee1-dead | Matthias Krüger | -1/+1 |
| 2023-10-15 | Duplicate `~const` bounds with a non-const one in effects desugaring | Deadbeef | -8/+98 |