| Age | Commit message (Expand) | Author | Lines |
| 2025-05-22 | Revert "Fix linking statics on Arm64EC #140176" | Jieyou Xu | -6/+1 |
| 2025-05-09 | Auto merge of #140176 - dpaoliello:arm64ecdec, r=wesleywiser | bors | -1/+6 |
| 2025-05-07 | [Arm64EC] Only decorate functions with `#` | Daniel Paoliello | -1/+6 |
| 2025-05-07 | Rollup merge of #139534 - madhav-madhusoodanan:apx-target-feature-addition, r... | Jacob Pratt | -17/+32 |
| 2025-05-06 | Added `apxf` target feature support, under flag `apx_target_feature` | Madhav Madhusoodanan | -0/+12 |
| 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 | feat: Added capability to add multiple dependencies for an LLVMFeature | Madhav Madhusoodanan | -17/+20 |
| 2025-05-04 | Initial support for dynamically linked crates | Bryanskiy | -2/+7 |
| 2025-05-04 | Rollup merge of #139675 - sayantn:avx10, r=Amanieu | Stuart Cook | -0/+3 |
| 2025-05-01 | Rollup merge of #140460 - heiher:issue-140455, r=Urgau | Guillaume Gomez | -0/+6 |
| 2025-04-30 | Rollup merge of #134232 - bjorn3:naked_asm_improvements, r=wesleywiser | Matthias Krüger | -4/+4 |
| 2025-04-29 | Filter out LoongArch features not supported by the current LLVM version | WANG Rui | -0/+6 |
| 2025-04-29 | Enable `target_has_reliable_f16_math` on x86 | Trevor Gross | -7/+3 |
| 2025-04-28 | Rollup merge of #140323 - tgross35:cfg-unstable-float, r=Urgau | Chris Denton | -7/+90 |
| 2025-04-28 | Rollup merge of #139308 - Shourya742:2025-03-29-add-autodiff-inline, r=ZuseZ4 | Chris Denton | -2/+101 |
| 2025-04-28 | remove noinline attribute and add alwaysinline after AD pass | bit-aloo | -6/+75 |
| 2025-04-28 | AsyncDrop implementation using shim codegen of async_drop_in_place::{closure}... | Andrew Zhogin | -6/+3 |
| 2025-04-27 | Implement the internal feature `cfg_target_has_reliable_f16_f128` | Trevor Gross | -7/+90 |
| 2025-04-26 | Add the `avx10.1` and `avx10.2` target features | sayantn | -0/+3 |
| 2025-04-25 | Rollup merge of #140202 - est31:let_chains_feature_compiler, r=lcnr | Matthias Krüger | -1/+1 |
| 2025-04-25 | add custom enzyme markers to target methods | bit-aloo | -0/+5 |
| 2025-04-25 | add llvm wrappers and corresponding methods in attribute | bit-aloo | -0/+25 |
| 2025-04-24 | Rollup merge of #139700 - EnzymeAD:autodiff-flags, r=oli-obk | Matthias Krüger | -20/+41 |
| 2025-04-24 | Rollup merge of #139261 - RalfJung:msvc-align-mitigation, r=oli-obk | Matthias Krüger | -0/+2 |
| 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 | -44/+12 |
| 2025-04-20 | simd intrinsics with mask: accept unsigned integer masks | Ralf Jung | -44/+12 |
| 2025-04-18 | Rollup merge of #138599 - adwinwhite:recursive-overflow, r=wesleywiser | Matthias Krüger | -0/+50 |
| 2025-04-17 | Rollup merge of #139351 - EnzymeAD:autodiff-batching2, r=oli-obk | Matthias Krüger | -6/+34 |
| 2025-04-16 | working dupv and dupvonly for fwd mode | Manuel Drehwald | -6/+34 |
| 2025-04-15 | Revert "Deduplicate template parameter creation" | Vadim Petrochenkov | -26/+45 |
| 2025-04-14 | Use `newtype_index!`-generated types more idiomatically | Yotam Ofek | -3/+1 |
| 2025-04-14 | Pass &mut self to codegen_global_asm | bjorn3 | -3/+3 |
| 2025-04-14 | Pass MonoItemData to MonoItem::define | bjorn3 | -2/+2 |
| 2025-04-12 | update documentation | Manuel Drehwald | -1/+6 |
| 2025-04-12 | fix "could not find source function" error by preventing function merging bef... | Manuel Drehwald | -1/+4 |
| 2025-04-12 | fix LooseTypes flag and PrintMod behaviour, add debug helper | Manuel Drehwald | -18/+31 |
| 2025-04-11 | Rollup merge of #139664 - oli-obk:push-tkmurytmnsyw, r=RalfJung | Jacob Pratt | -8/+8 |
| 2025-04-11 | Auto merge of #139453 - compiler-errors:incr, r=jieyouxu | bors | -19/+48 |
| 2025-04-11 | Reuse address-space computation from global alloc | Oli Scherer | -8/+8 |
| 2025-04-11 | Rollup merge of #137447 - folkertdev:simd-extract-insert-dyn, r=scottmcm | Stuart Cook | -30/+39 |
| 2025-04-10 | add `simd_insert_dyn` and `simd_extract_dyn` | Folkert de Vries | -30/+39 |
| 2025-04-07 | mitigate MSVC unsoundness by not emitting alignment attributes on win32-msvc ... | Ralf Jung | -0/+2 |
| 2025-04-07 | Prepend temp files with a string per invocation of rustc | Michael Goulet | -12/+46 |
| 2025-04-07 | Simplify temp path creation a bit | Michael Goulet | -17/+12 |
| 2025-04-07 | Rollup merge of #139465 - EnzymeAD:autodiff-sret, r=oli-obk | Stuart Cook | -2/+22 |
| 2025-04-07 | Rollup merge of #139397 - Zalathar:virtual, r=jieyouxu | Stuart Cook | -88/+110 |
| 2025-04-07 | handle sret for scalar autodiff | Manuel Drehwald | -2/+22 |
| 2025-04-07 | coverage: Build the CGU's global file table as late as possible | Zalathar | -88/+110 |
| 2025-04-07 | Auto merge of #139473 - Kobzol:rollup-ycksn9b, r=Kobzol | bors | -5/+2 |