| author | |
| committer | |
| log | 6b96c70ba3c521ca1dd01cf8e9635174531c30bc |
| tree | 2daf34c8a18d31829d74249d6d1186a92fdbd871 |
| parent | 0d7a9c4806a4edc820348a1ae6ad2cd09a3213f8 |
2 files changed, 2 insertions(+), 2 deletions(-)
lib/include/emmintrin.h+1-1| ... | ... | @@ -1771,7 +1771,7 @@ static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_undefined_pd(void) { |
| 1771 | 1771 | /// lower 64 bits contain the value of the parameter. The upper 64 bits are |
| 1772 | 1772 | /// set to zero. |
| 1773 | 1773 | static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_set_sd(double __w) { |
| 1774 | return __extension__(__m128d){__w, 0}; | |
| 1774 | return __extension__(__m128d){__w, 0.0}; | |
| 1775 | 1775 | } |
| 1776 | 1776 | |
| 1777 | 1777 | /// Constructs a 128-bit floating-point vector of [2 x double], with each |
lib/include/xmmintrin.h+1-1| ... | ... | @@ -1910,7 +1910,7 @@ _mm_undefined_ps(void) |
| 1910 | 1910 | static __inline__ __m128 __DEFAULT_FN_ATTRS |
| 1911 | 1911 | _mm_set_ss(float __w) |
| 1912 | 1912 | { |
| 1913 | return __extension__ (__m128){ __w, 0, 0, 0 }; | |
| 1913 | return __extension__ (__m128){ __w, 0.0f, 0.0f, 0.0f }; | |
| 1914 | 1914 | } |
| 1915 | 1915 | |
| 1916 | 1916 | /// Constructs a 128-bit floating-point vector of [4 x float], with each |