authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2024-09-18 06:27:06+02:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-09-19 18:20:21-07:00
log6b96c70ba3c521ca1dd01cf8e9635174531c30bc
tree2daf34c8a18d31829d74249d6d1186a92fdbd871
parent0d7a9c4806a4edc820348a1ae6ad2cd09a3213f8

clang: Update compiler-provided C headers to Clang 19.1.0.


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) {
17711771/// lower 64 bits contain the value of the parameter. The upper 64 bits are
17721772/// set to zero.
17731773static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_set_sd(double __w) {
1774 return __extension__(__m128d){__w, 0};
1774 return __extension__(__m128d){__w, 0.0};
17751775}
17761776
17771777/// 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)
19101910static __inline__ __m128 __DEFAULT_FN_ATTRS
19111911_mm_set_ss(float __w)
19121912{
1913 return __extension__ (__m128){ __w, 0, 0, 0 };
1913 return __extension__ (__m128){ __w, 0.0f, 0.0f, 0.0f };
19141914}
19151915
19161916/// Constructs a 128-bit floating-point vector of [4 x float], with each