diff options
author | Josh Blum <josh@joshknows.com> | 2012-06-25 10:50:43 -0700 |
---|---|---|
committer | Josh Blum <josh@joshknows.com> | 2012-06-25 10:50:43 -0700 |
commit | feaa399ba51e8959e92cf9b73375db1c6b638b3f (patch) | |
tree | 5dca1b226bdbc19c90cc0a0fda48670facc8dccd /volk | |
parent | bf8700a226091c5ce0130a3819a4c12b9d9981a6 (diff) |
volk: replace (__m128) with volk cast for portability
Diffstat (limited to 'volk')
-rw-r--r-- | volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h b/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h index 166a883a7f..caef3e6f0d 100644 --- a/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h +++ b/volk/include/volk/volk_32fc_x2_dot_prod_32fc_a.h @@ -420,7 +420,7 @@ static inline void volk_32fc_x2_dot_prod_32fc_a_sse4_1(lv_32fc_t* result, const } - real1 = _mm_xor_ps(real1, (__m128)neg); + real1 = _mm_xor_ps(real1, bit128_p(&neg)->float_vec); im0 = _mm_add_ps(im0, im1); real0 = _mm_add_ps(real0, real1); |