Commit 78faeab1 authored by Michael R. Crusoe's avatar Michael R. Crusoe

wasm/simd128: fix altivec_p7 version of wasm_f64x2_pmin

parent 1f359106
...@@ -5506,11 +5506,11 @@ simde_wasm_f64x2_pmin (simde_v128_t a, simde_v128_t b) { ...@@ -5506,11 +5506,11 @@ simde_wasm_f64x2_pmin (simde_v128_t a, simde_v128_t b) {
a_.neon_f64 a_.neon_f64
); );
#elif defined(SIMDE_POWER_ALTIVEC_P7_NATIVE) #elif defined(SIMDE_POWER_ALTIVEC_P7_NATIVE)
r_.altivec_f32 = r_.altivec_f64 =
vec_sel( vec_sel(
a_.altivec_f32, a_.altivec_f64,
b_.altivec_f32, b_.altivec_f64,
vec_cmpgt(a_.altivec_f32, b_.altivec_f32) vec_cmpgt(a_.altivec_f64, b_.altivec_f64)
); );
#else #else
SIMDE_VECTORIZE SIMDE_VECTORIZE
......
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