From 3892ed61549479d28c6a64c01233b9d70a2622c1 Mon Sep 17 00:00:00 2001 From: John Platts Date: Tue, 26 May 2026 13:47:47 -0500 Subject: [PATCH] Fixed PPC10 AndXor implementation --- hwy/ops/ppc_vsx-inl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hwy/ops/ppc_vsx-inl.h b/hwy/ops/ppc_vsx-inl.h index e1f5b50935..3c31a36c74 100644 --- a/hwy/ops/ppc_vsx-inl.h +++ b/hwy/ops/ppc_vsx-inl.h @@ -529,7 +529,7 @@ HWY_API Vec128 AndXor(Vec128 a, Vec128 x1, } else // NOLINT #endif { - return detail::TernaryLogic<0x06>(x, a1, a2); + return detail::TernaryLogic<0x06>(a, x1, x2); } }