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
lib/std/Build.zig-1
| ... | ... | @@ -2707,5 +2707,4 @@ pub fn systemIntegrationOption( |
| 2707 | 2707 | test { |
| 2708 | 2708 | _ = Cache; |
| 2709 | 2709 | _ = Step; |
| 2710 | | _ = &findProgram; |
| 2711 | 2710 | } |