| Age | Commit message (Expand) | Author | Lines |
| 2025-05-12 | update cfg(bootstrap) | Pietro Albini | -1/+0 |
| 2025-05-10 | Rollup merge of #140660 - RalfJung:more-order, r=WaffleLapkin | Matthias Krüger | -2/+0 |
| 2025-05-09 | remove 'unordered' atomic intrinsics | Ralf Jung | -2/+0 |
| 2025-05-07 | [Arm64EC] Only decorate functions with `#` | Daniel Paoliello | -50/+130 |
| 2025-05-06 | Rollup merge of #140634 - smrobtzz:mips-elf-fixes, r=workingjubilee | Stuart Cook | -25/+41 |
| 2025-05-05 | Apply suggestions from code review | smrobtzz | -1/+12 |
| 2025-05-05 | Use more accurate ELF flags on MIPS | Sam Roberts | -25/+30 |
| 2025-05-05 | Rename Instance::new to Instance::new_raw and add a note that it is raw | Michael Goulet | -2/+2 |
| 2025-05-05 | Resolve instance for SymFn in global/naked asm | Michael Goulet | -2/+10 |
| 2025-05-04 | Initial support for dynamically linked crates | Bryanskiy | -10/+14 |
| 2025-05-02 | Update compiler/rustc_codegen_ssa/src/back/link.rs | xizheyin | -2/+2 |
| 2025-05-02 | check all crate-type to find staticlib | xizheyin | -6/+6 |
| 2025-05-02 | Update compiler/rustc_codegen_ssa/src/back/link.rs | xizheyin | -1/+1 |
| 2025-05-02 | Emit warning while outputs is not exe and prints linkage info | xizheyin | -0/+19 |
| 2025-05-02 | linker: Quote symbol names in .def files | Vadim Petrochenkov | -1/+3 |
| 2025-05-01 | Auto merge of #138522 - osiewicz:shared-generics-respect-visibility, r=bjorn3 | bors | -12/+59 |
| 2025-04-30 | Rollup merge of #140203 - Wyliodrin:error_for_no_mangle_weak_language_items, ... | Matthias Krüger | -0/+30 |
| 2025-04-30 | Rollup merge of #134232 - bjorn3:naked_asm_improvements, r=wesleywiser | Matthias Krüger | -99/+124 |
| 2025-04-30 | error when using no_mangle on language items | Alexandru RADOVICI | -0/+30 |
| 2025-04-30 | Auto merge of #127516 - nnethercote:simplify-LazyAttrTokenStream, r=petrochenkov | bors | -0/+1 |
| 2025-04-30 | Simplify `LazyAttrTokenStream`. | Nicholas Nethercote | -0/+1 |
| 2025-04-29 | Update documentation for `fn target_config` | Trevor Gross | -5/+4 |
| 2025-04-28 | Rollup merge of #140323 - tgross35:cfg-unstable-float, r=Urgau | Chris Denton | -3/+28 |
| 2025-04-28 | shared-generics: Do not share instantiations that cannot be created outside o... | Piotr Osiewicz | -12/+59 |
| 2025-04-28 | AsyncDrop implementation using shim codegen of async_drop_in_place::{closure}... | Andrew Zhogin | -10/+31 |
| 2025-04-27 | Implement the internal feature `cfg_target_has_reliable_f16_f128` | Trevor Gross | -3/+28 |
| 2025-04-26 | Rollup merge of #140086 - ChrisDenton:backoff, r=petrochenkov | Matthias Krüger | -5/+4 |
| 2025-04-25 | Retry if creating temp fails with access denied | Chris Denton | -5/+4 |
| 2025-04-25 | Rollup merge of #140202 - est31:let_chains_feature_compiler, r=lcnr | Matthias Krüger | -1/+1 |
| 2025-04-24 | strip underlying xcoff object | Henry Jiang | -2/+2 |
| 2025-04-24 | Auto merge of #139752 - usamoi:macos-used, r=saethlin,madsmtm | bors | -0/+6 |
| 2025-04-25 | set subsections_via_symbols for ld64 helper sections | usamoi | -0/+6 |
| 2025-04-23 | Make #![feature(let_chains)] bootstrap conditional in compiler/ | est31 | -1/+1 |
| 2025-04-20 | Rollup merge of #137953 - RalfJung:simd-intrinsic-masks, r=WaffleLapkin | Chris Denton | -21/+2 |
| 2025-04-20 | simd intrinsics with mask: accept unsigned integer masks | Ralf Jung | -21/+2 |
| 2025-04-18 | Rollup merge of #139615 - nnethercote:rm-name_or_empty, r=jdonszelmann | Matthias Krüger | -14/+19 |
| 2025-04-17 | Replace infallible `name_or_empty` methods with fallible `name` methods. | Nicholas Nethercote | -14/+19 |
| 2025-04-16 | fix multiple `#[repr(align(N))]` on functions | Folkert de Vries | -1/+2 |
| 2025-04-14 | Share part of the global_asm!() implementation between cg_ssa and cg_clif | bjorn3 | -69/+69 |
| 2025-04-14 | Pass &mut self to codegen_global_asm | bjorn3 | -4/+12 |
| 2025-04-14 | Make codegen_naked_asm public | bjorn3 | -2/+2 |
| 2025-04-14 | Pass MonoItemData to MonoItem::define | bjorn3 | -10/+9 |
| 2025-04-14 | Move codegen_naked_asm call up into MonoItem::define | bjorn3 | -8/+14 |
| 2025-04-14 | Make codegen_naked_asm retrieve the MIR Body itself | bjorn3 | -5/+6 |
| 2025-04-14 | Only require a CodegenCx for codegen_naked_asm | bjorn3 | -9/+17 |
| 2025-04-14 | Don't begin defining a function when codegening a naked function | bjorn3 | -7/+7 |
| 2025-04-14 | Handle protected visibility in codegen_naked_asm | bjorn3 | -4/+7 |
| 2025-04-14 | Use START_BLOCK in codegen_naked_asm | bjorn3 | -2/+2 |
| 2025-04-14 | Auto merge of #124141 - nnethercote:rm-Nonterminal-and-TokenKind-Interpolated... | bors | -1/+0 |
| 2025-04-11 | Auto merge of #139453 - compiler-errors:incr, r=jieyouxu | bors | -29/+53 |