Skip to content

Commit

Permalink
Disambiguate vector type to avoid errors depending on lax conversion …
Browse files Browse the repository at this point in the history
…settings (#614)
  • Loading branch information
JoachimSchurig committed Oct 4, 2023
1 parent 8371b36 commit 2c0face
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sse2neon.h
Original file line number Diff line number Diff line change
Expand Up @@ -5534,7 +5534,7 @@ FORCE_INLINE void _mm_storeu_si32(void *p, __m128i a)
FORCE_INLINE void _mm_stream_pd(double *p, __m128d a)
{
#if __has_builtin(__builtin_nontemporal_store)
__builtin_nontemporal_store(a, (float32x4_t *) p);
__builtin_nontemporal_store(a, (__m128d *) p);
#elif defined(__aarch64__) || defined(_M_ARM64)
vst1q_f64(p, vreinterpretq_f64_m128d(a));
#else
Expand Down

0 comments on commit 2c0face

Please sign in to comment.