Commit 0e3290e8 authored by Michael R. Crusoe's avatar Michael R. Crusoe

neon/st1: disable last remaining AltiVec implementation

parent db0649e1
...@@ -223,8 +223,6 @@ void ...@@ -223,8 +223,6 @@ void
simde_vst1q_f32(simde_float32_t ptr[HEDLEY_ARRAY_PARAM(4)], simde_float32x4_t val) { simde_vst1q_f32(simde_float32_t ptr[HEDLEY_ARRAY_PARAM(4)], simde_float32x4_t val) {
#if defined(SIMDE_ARM_NEON_A32V7_NATIVE) #if defined(SIMDE_ARM_NEON_A32V7_NATIVE)
vst1q_f32(ptr, val); vst1q_f32(ptr, val);
#elif defined(SIMDE_POWER_ALTIVEC_P6_NATIVE)
vec_st(val, 0, ptr);
#else #else
simde_float32x4_private val_ = simde_float32x4_to_private(val); simde_float32x4_private val_ = simde_float32x4_to_private(val);
......
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