From 367d640bb7fda6feba1f8e04cdb5534e6eb501cd Mon Sep 17 00:00:00 2001 From: Pradipta Ghosh Date: Tue, 24 Jan 2023 14:07:45 +0000 Subject: replace __builtin_s390_vflls with npyv_doublee as before --- numpy/core/src/common/simd/vec/conversion.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'numpy') diff --git a/numpy/core/src/common/simd/vec/conversion.h b/numpy/core/src/common/simd/vec/conversion.h index 34020d4d2..0c0d5b3ac 100644 --- a/numpy/core/src/common/simd/vec/conversion.h +++ b/numpy/core/src/common/simd/vec/conversion.h @@ -170,8 +170,8 @@ npyv_pack_b8_b64(npyv_b64 a, npyv_b64 b, npyv_b64 c, npyv_b64 d, #ifdef NPY_HAVE_VXE2 return vec_signed(a); #elif defined(NPY_HAVE_VXE) - return vec_packs(vec_signed(__builtin_s390_vflls(vec_mergeh(a,a))), - vec_signed(__builtin_s390_vflls(vec_mergel(a, a)))); + return vec_packs(vec_signed(npyv_doublee(vec_mergeh(a,a))), + vec_signed(npyv_doublee(vec_mergel(a, a)))); // VSX #elif defined(__IBMC__) return vec_cts(a, 0); -- cgit v1.2.1