authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-07 18:30:16+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-07 18:37:18+02:00
log23f46bcd4d1d6cca5a25ed9e7b1222b1283de7af
treea31d72b8b82d4836ada12f53c02fcda2a6233114
parentaf27e8d06fe151cf689e3a6e33b660e3cd4ac8d0
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Partially revert "add missing param to mem.concat call"

This partially reverts commit af27e8d06fe151cf689e3a6e33b660e3cd4ac8d0. This broke two platforms: * s390x-linux: It caused the `loadBits and storeBits` test to be analyzed and run, and that test looks to me to be bogus on big endian. * x86_64-windows: `tryFindProgram` is not fallible, yet the Windows code uses `try`, so making it get analyzed exposed another compile error. Reverting the analysis of `findProgram` for now to unbreak master and a number of PRs, but we should still urgently fix both of these issues.

1 files changed, 0 insertions(+), 1 deletions(-)

lib/std/Build.zig-1
......@@ -2707,5 +2707,4 @@ pub fn systemIntegrationOption(
27072707test {
27082708 _ = Cache;
27092709 _ = Step;
2710 _ = &findProgram;
27112710}