mirror of
https://github.com/ziglang/zig.git
synced 2024-11-13 23:52:57 +00:00
clang: Update compiler-provided C headers to Clang 19.1.0.
This commit is contained in:
parent
0d7a9c4806
commit
6b96c70ba3
2
lib/include/emmintrin.h
vendored
2
lib/include/emmintrin.h
vendored
@ -1771,7 +1771,7 @@ static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_undefined_pd(void) {
|
||||
/// lower 64 bits contain the value of the parameter. The upper 64 bits are
|
||||
/// set to zero.
|
||||
static __inline__ __m128d __DEFAULT_FN_ATTRS _mm_set_sd(double __w) {
|
||||
return __extension__(__m128d){__w, 0};
|
||||
return __extension__(__m128d){__w, 0.0};
|
||||
}
|
||||
|
||||
/// Constructs a 128-bit floating-point vector of [2 x double], with each
|
||||
|
2
lib/include/xmmintrin.h
vendored
2
lib/include/xmmintrin.h
vendored
@ -1910,7 +1910,7 @@ _mm_undefined_ps(void)
|
||||
static __inline__ __m128 __DEFAULT_FN_ATTRS
|
||||
_mm_set_ss(float __w)
|
||||
{
|
||||
return __extension__ (__m128){ __w, 0, 0, 0 };
|
||||
return __extension__ (__m128){ __w, 0.0f, 0.0f, 0.0f };
|
||||
}
|
||||
|
||||
/// Constructs a 128-bit floating-point vector of [4 x float], with each
|
||||
|
Loading…
Reference in New Issue
Block a user