Skip to content

Commit c934686

Browse files
committed
Fix vreinterpretq_f64_p128 and vreinterpretq_p128_f64
1 parent e09d9d9 commit c934686

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

simde/arm/neon/reinterpret.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6382,7 +6382,7 @@ simde_vreinterpretq_p128_f32(simde_float32x4_t a) {
63826382
SIMDE_FUNCTION_ATTRIBUTES
63836383
simde_poly128_t
63846384
simde_vreinterpretq_p128_f64(simde_float64x2_t a) {
6385-
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && defined(SIMDE_ARCH_ARM_CRYPTO)
6385+
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE) && defined(SIMDE_ARCH_ARM_CRYPTO)
63866386
return vreinterpretq_p128_f64(a);
63876387
#else
63886388
simde_poly128_t r_;
@@ -6586,7 +6586,7 @@ simde_vreinterpretq_f16_p128(simde_poly128_t a) {
65866586
SIMDE_FUNCTION_ATTRIBUTES
65876587
simde_float64x2_t
65886588
simde_vreinterpretq_f64_p128(simde_poly128_t a) {
6589-
#if defined(SIMDE_ARM_NEON_A32V8_NATIVE) && defined(SIMDE_ARCH_ARM_CRYPTO)
6589+
#if defined(SIMDE_ARM_NEON_A64V8_NATIVE) && defined(SIMDE_ARCH_ARM_CRYPTO)
65906590
return vreinterpretq_f64_p128(a);
65916591
#else
65926592
simde_float64x2_private r_;

0 commit comments

Comments
 (0)