https://gcc.gnu.org/bugzilla/show_bug.cgi?id=47825
Andrew Pinski <pinskia at gcc dot gnu.org> changed: What |Removed |Added ---------------------------------------------------------------------------- Resolution|--- |FIXED Target Milestone|--- |7.0 Status|REOPENED |RESOLVED --- Comment #8 from Andrew Pinski <pinskia at gcc dot gnu.org> --- Fixed for GCC 7+ by r7-2885. @@ -921,14 +924,14 @@ _mm_load_ps1 (float const *__P) extern __inline __m128 __attribute__((__gnu_inline__, __always_inline__, __artificial__)) _mm_load_ps (float const *__P) { - return (__m128) *(__v4sf *)__P; + return *(__m128 *)__P; }