authorgravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-12 06:01:05+02:00
committergravatar for alex@alexrp.comAlex Rønne Petersen <alex@alexrp.com> 2026-06-12 06:01:05+02:00
logdde807f515e871eefea3841f1836f23dfe7f8ac2
tree2db96ff7b992001bca9e9f30638b80d3d2a6b78c
parent2b2b85c5f54a130ecbcd2fadfc8e6b499d151236
parent1af28aebd7385104d31f8a7e5e307600b97cad5a

Merge pull request 'ci: update libc-test to `b95fe84`' (#35694) from alexrp/zig:update-libc-test into master

Reviewed-on: https://codeberg.org/ziglang/zig/pulls/35694

4 files changed, 4 insertions(+), 4 deletions(-)

ci/x86_64-linux-debug-llvm.sh+1-1
......@@ -51,7 +51,7 @@ stage3-debug/bin/zig build \
5151stage3-debug/bin/zig build test docs \
5252 --maxrss ${ZSF_MAX_RSS:-0} \
5353 -Dlldb=$HOME/deps/lldb-zig/Debug-7c1090fd46/bin/lldb \
54 -Dlibc-test-path=$HOME/deps/libc-test-f2bac77 \
54 -Dlibc-test-path=$HOME/deps/libc-test-b95fe84 \
5555 -fqemu \
5656 --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \
5757 -fwasmtime \
ci/x86_64-linux-release.sh+1-1
......@@ -59,7 +59,7 @@ stage3-release/bin/zig build \
5959stage3-release/bin/zig build test docs \
6060 --maxrss ${ZSF_MAX_RSS:-0} \
6161 -Dlldb=$HOME/deps/lldb-zig/Release-7c1090fd46/bin/lldb \
62 -Dlibc-test-path=$HOME/deps/libc-test-f2bac77 \
62 -Dlibc-test-path=$HOME/deps/libc-test-b95fe84 \
6363 -fqemu \
6464 --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \
6565 -fwasmtime \
lib/libc/musl/src/internal/floatscan.c+1-1
......@@ -347,7 +347,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok)
347347 else d = c-'0';
348348 if (dc<8) {
349349 x = x*16 + d;
350 } else if (dc < LDBL_MANT_DIG/4+1) {
350 } else if (dc < (LDBL_MANT_DIG+3)/4+1) {
351351 y += d*(scale/=16);
352352 } else if (d && !gottail) {
353353 y += 0.5*scale;
lib/libc/wasi/libc-top-half/musl/src/internal/floatscan.c+1-1
......@@ -388,7 +388,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok)
388388 else d = c-'0';
389389 if (dc<8) {
390390 x = x*16 + d;
391 } else if (dc < LDBL_MANT_DIG/4+1) {
391 } else if (dc < (LDBL_MANT_DIG+3)/4+1) {
392392 y += d*(scale/=16);
393393 } else if (d && !gottail) {
394394 y += 0.5*scale;