| author | |
| committer | |
| log | dde807f515e871eefea3841f1836f23dfe7f8ac2 |
| tree | 2db96ff7b992001bca9e9f30638b80d3d2a6b78c |
| parent | 2b2b85c5f54a130ecbcd2fadfc8e6b499d151236 |
| parent | 1af28aebd7385104d31f8a7e5e307600b97cad5a |
Reviewed-on: https://codeberg.org/ziglang/zig/pulls/356944 files changed, 4 insertions(+), 4 deletions(-)
ci/x86_64-linux-debug-llvm.sh+1-1| ... | @@ -51,7 +51,7 @@ stage3-debug/bin/zig build \ | ... | @@ -51,7 +51,7 @@ stage3-debug/bin/zig build \ |
| 51 | stage3-debug/bin/zig build test docs \ | 51 | stage3-debug/bin/zig build test docs \ |
| 52 | --maxrss ${ZSF_MAX_RSS:-0} \ | 52 | --maxrss ${ZSF_MAX_RSS:-0} \ |
| 53 | -Dlldb=$HOME/deps/lldb-zig/Debug-7c1090fd46/bin/lldb \ | 53 | -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 \ |
| 55 | -fqemu \ | 55 | -fqemu \ |
| 56 | --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \ | 56 | --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \ |
| 57 | -fwasmtime \ | 57 | -fwasmtime \ |
ci/x86_64-linux-release.sh+1-1| ... | @@ -59,7 +59,7 @@ stage3-release/bin/zig build \ | ... | @@ -59,7 +59,7 @@ stage3-release/bin/zig build \ |
| 59 | stage3-release/bin/zig build test docs \ | 59 | stage3-release/bin/zig build test docs \ |
| 60 | --maxrss ${ZSF_MAX_RSS:-0} \ | 60 | --maxrss ${ZSF_MAX_RSS:-0} \ |
| 61 | -Dlldb=$HOME/deps/lldb-zig/Release-7c1090fd46/bin/lldb \ | 61 | -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 \ |
| 63 | -fqemu \ | 63 | -fqemu \ |
| 64 | --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \ | 64 | --libc-runtimes $HOME/deps/glibc-2.43-musl-1.2.5 \ |
| 65 | -fwasmtime \ | 65 | -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) | ... | @@ -347,7 +347,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) |
| 347 | 			else d = c-'0'; | 347 | 			else d = c-'0'; |
| 348 | 			if (dc<8) { | 348 | 			if (dc<8) { |
| 349 | 				x = x*16 + d; | 349 | 				x = x*16 + d; |
| 350 | 			} else if (dc < LDBL_MANT_DIG/4+1) { | 350 | 			} else if (dc < (LDBL_MANT_DIG+3)/4+1) { |
| 351 | 				y += d*(scale/=16); | 351 | 				y += d*(scale/=16); |
| 352 | 			} else if (d && !gottail) { | 352 | 			} else if (d && !gottail) { |
| 353 | 				y += 0.5*scale; | 353 | 				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) | ... | @@ -388,7 +388,7 @@ static long double hexfloat(FILE *f, int bits, int emin, int sign, int pok) |
| 388 | 			else d = c-'0'; | 388 | 			else d = c-'0'; |
| 389 | 			if (dc<8) { | 389 | 			if (dc<8) { |
| 390 | 				x = x*16 + d; | 390 | 				x = x*16 + d; |
| 391 | 			} else if (dc < LDBL_MANT_DIG/4+1) { | 391 | 			} else if (dc < (LDBL_MANT_DIG+3)/4+1) { |
| 392 | 				y += d*(scale/=16); | 392 | 				y += d*(scale/=16); |
| 393 | 			} else if (d && !gottail) { | 393 | 			} else if (d && !gottail) { |
| 394 | 				y += 0.5*scale; | 394 | 				y += 0.5*scale; |