| Age | Commit message (Expand) | Author | Lines |
| 2024-06-24 | rustc_target: Build sparc_unknown_linux_gnu with -mcpu=v9 and -m32 | John Paul Adrian Glaubitz | -1/+1 |
| 2024-06-24 | rustc_target: Rewrite sparc_unknown_linux_gnu spec to use TargetOptions | John Paul Adrian Glaubitz | -8/+11 |
| 2024-06-24 | rustc_llvm: Link against libatomic on 32-bit SPARC | John Paul Adrian Glaubitz | -0/+1 |
| 2024-06-24 | rustc_data_structures: Use portable AtomicU64 on 32-bit SPARC | John Paul Adrian Glaubitz | -7/+7 |
| 2024-06-24 | Rollup merge of #126849 - workingjubilee:correctly-classify-arm-low-dregs, r=... | Matthias Krüger | -40/+40 |
| 2024-06-24 | Rollup merge of #126455 - surechen:fix_126222, r=estebank | Matthias Krüger | -9/+51 |
| 2024-06-24 | Rollup merge of #126177 - carbotaniuman:unsafe_attr_errors, r=jieyouxu | Matthias Krüger | -47/+185 |
| 2024-06-24 | Auto merge of #126023 - amandasystems:you-dropped-this-again, r=nikomatsakis | bors | -51/+57 |
| 2024-06-23 | Add hard error and migration lint for unsafe attrs | carbotaniuman | -47/+185 |
| 2024-06-23 | Rollup merge of #126851 - nnethercote:NtExprKind-NtPatKind, r=compiler-errors | Matthias Krüger | -86/+95 |
| 2024-06-23 | Rollup merge of #126837 - petrochenkov:delegfix, r=compiler-errors | Matthias Krüger | -2/+20 |
| 2024-06-23 | Rollup merge of #126833 - RalfJung:extern-type-field-ice, r=compiler-errors | Matthias Krüger | -41/+63 |
| 2024-06-23 | Rollup merge of #126830 - RalfJung:unsized-fn-params, r=compiler-errors | Matthias Krüger | -1/+1 |
| 2024-06-23 | Auto merge of #123088 - tgross35:f16-f128-pattern-analysis, r=Nadrieril | bors | -11/+86 |
| 2024-06-23 | Auto merge of #124733 - workingjubilee:cant-beleaf-we-dont-have-this, r=saethlin | bors | -18/+53 |
| 2024-06-23 | Replace `f16` and `f128` pattern matching stubs with real implementations | Trevor Gross | -11/+86 |
| 2024-06-23 | compiler: parse the empty frame-pointer | Jubilee Young | -2/+2 |
| 2024-06-23 | compiler: Accept -Cforce-frame-pointers=always | Jubilee Young | -11/+10 |
| 2024-06-23 | compiler: Support nightly -Cforce-frame-pointers=non-leaf | Jubilee Young | -4/+14 |
| 2024-06-23 | cg_clif: Define build opts from FramePointer | Jubilee Young | -3/+3 |
| 2024-06-23 | compiler(nfc): -Cforce-frame-pointers is a FramePointer | Jubilee Young | -14/+26 |
| 2024-06-23 | compiler: Add FramePointer::ratchet | Jubilee Young | -0/+14 |
| 2024-06-22 | compiler: Mention C-unwind in C-variadic error | Jubilee Young | -1/+1 |
| 2024-06-23 | Rework pattern and expression nonterminal kinds. | Nicholas Nethercote | -57/+68 |
| 2024-06-22 | compiler: Fix arm32 asm issues by hierarchically sorting reg classes | Jubilee Young | -40/+40 |
| 2024-06-23 | For [E0308]: mismatched types, when expr is in an arm's body, not add semicol... | surechen | -9/+51 |
| 2024-06-22 | Allow "C-unwind" fn to have C variadics | Jubilee Young | -0/+2 |
| 2024-06-23 | Tweak some ugly formatting. | Nicholas Nethercote | -1/+4 |
| 2024-06-23 | Import `NonterminalKind` in `compiler/rustc_expand/src/mbe/quoted.rs`. | Nicholas Nethercote | -30/+25 |
| 2024-06-22 | Rollup merge of #126552 - fee1-dead-contrib:rmfx, r=compiler-errors | Matthias Krüger | -13/+13 |
| 2024-06-22 | delegation: Do not crash on qpaths without a trait | Vadim Petrochenkov | -2/+20 |
| 2024-06-22 | don't ICE when encountering an extern type field during validation | Ralf Jung | -41/+63 |
| 2024-06-22 | Make `effects` an incomplete feature | Deadbeef | -1/+1 |
| 2024-06-22 | make unsized_fn_params an internal feature | Ralf Jung | -1/+1 |
| 2024-06-22 | Rollup merge of #126723 - estebank:dot-dot-dot, r=Nadrieril | Guillaume Gomez | -2/+2 |
| 2024-06-22 | Rollup merge of #126686 - fmease:dump-preds-n-item-bounds, r=compiler-errors | Guillaume Gomez | -104/+128 |
| 2024-06-22 | Rollup merge of #126555 - beetrees:f16-inline-asm-arm, r=Amanieu | Guillaume Gomez | -5/+46 |
| 2024-06-22 | Add `#[rustc_dump_{predicates,item_bounds}]` | León Orell Valerian Liehr | -0/+36 |
| 2024-06-21 | Rollup merge of #126811 - compiler-errors:tidy-ftl, r=estebank | Jubilee | -23/+22 |
| 2024-06-21 | Rollup merge of #126809 - estebank:wording-tweak, r=oli-obk | Jubilee | -1/+1 |
| 2024-06-21 | Rollup merge of #126787 - Strophox:get-bytes, r=RalfJung | Jubilee | -3/+40 |
| 2024-06-21 | Rollup merge of #126722 - adwinwhite:ptr_fn_abi, r=celinval | Jubilee | -1/+21 |
| 2024-06-21 | Rollup merge of #126530 - beetrees:f16-inline-asm-riscv, r=Amanieu | Jubilee | -9/+55 |
| 2024-06-22 | Auto merge of #126758 - spastorino:avoid-safe-outside-unsafe-blocks, r=compil... | bors | -16/+58 |
| 2024-06-21 | Fix remaining cases | Michael Goulet | -24/+23 |
| 2024-06-21 | Remove stray `.` from error message | Esteban Küber | -1/+1 |
| 2024-06-21 | Auto merge of #126650 - compiler-errors:renames, r=lcnr | bors | -566/+538 |
| 2024-06-21 | Add `f16` inline ASM support for RISC-V | beetrees | -9/+55 |
| 2024-06-21 | Add `f16` inline ASM support for 32-bit ARM | beetrees | -5/+46 |
| 2024-06-21 | Rename a bunch of things | Michael Goulet | -566/+538 |