authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-01-30 01:08:25+01:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-04-22 15:31:57+02:00
log3feb0d391fb736152cd6d7763ed4a743822eed62
tree376bbcf938b6cb249d5e55279349bac5f566b040
parent7ca4489fdc6172bc587f4397c196c87866a0b8e6
signaturebadge-check Signed by SSH key SHA256:7B/LJ7bpR1eX8aCXSr4mtd5M45VMPKcx9zY8e95b5QM

Revert "std.zig.system: disable vector support on s390x for now"

This reverts commit 1cd913a0ec816f44d157980ade00a6560832a348. The bug was fixed in LLVM 22.

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

lib/std/zig/system.zig-5
...@@ -460,11 +460,6 @@ pub fn resolveTargetQuery(io: Io, query: Target.Query) DetectError!Target {...@@ -460,11 +460,6 @@ pub fn resolveTargetQuery(io: Io, query: Target.Query) DetectError!Target {
460 if (result.cpu.arch.isArm() and result.abi.float() == .soft) {460 if (result.cpu.arch.isArm() and result.abi.float() == .soft) {
461 result.cpu.features.removeFeature(@intFromEnum(Target.arm.Feature.vfp2));461 result.cpu.features.removeFeature(@intFromEnum(Target.arm.Feature.vfp2));
462 }462 }
463
464 // https://github.com/llvm/llvm-project/issues/168992
465 if (result.cpu.arch == .s390x) {
466 result.cpu.features.removeFeature(@intFromEnum(Target.s390x.Feature.vector));
467 }
468 }463 }
469464
470 // It's possible that we detect the native ABI, but fail to detect the OS version or were told465 // It's possible that we detect the native ABI, but fail to detect the OS version or were told