Commit 8b0937a3 authored by Michael R. Crusoe's avatar Michael R. Crusoe Committed by Michael R. Crusoe

neon/cvz z/Arch: stop using deprecated functions.

parent e18dcd7d
...@@ -1369,7 +1369,7 @@ simde_vcvtq_f64_s64(simde_int64x2_t a) { ...@@ -1369,7 +1369,7 @@ simde_vcvtq_f64_s64(simde_int64x2_t a) {
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE) #if defined(SIMDE_ARM_NEON_A64V8_NATIVE)
return vcvtq_f64_s64(a); return vcvtq_f64_s64(a);
#elif defined(SIMDE_ZARCH_ZVECTOR_13_NATIVE) #elif defined(SIMDE_ZARCH_ZVECTOR_13_NATIVE)
return vec_ctd(a, 0); return vec_double(a);
#else #else
simde_int64x2_private a_ = simde_int64x2_to_private(a); simde_int64x2_private a_ = simde_int64x2_to_private(a);
simde_float64x2_private r_; simde_float64x2_private r_;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment