wooster0
5b9b5e45cb
std.fmt.digits2: optimize for ReleaseSmall
Difference:
```
$ cat x.zig
const std = @import("std");
pub const std_options = std.Options{ .keep_sigpipe = true };
pub fn main() void {
std.io.getStdOut().writer().print("{d}\n", .{@intFromPtr(std.os.argv.ptr)}) catch {};
}
$ zig build-exe x.zig -OReleaseSmall -fsingle-threaded -fno-unwind-tables && wc -c x
2576 x
$ zig build-exe x.zig -OReleaseSmall -fsingle-threaded -fno-unwind-tables --zig-lib-dir ../zig/lib && wc -c x
2424 x
```
2025-02-12 14:45:38 -08:00
..
2025-02-11 13:39:20 -08:00
2025-02-11 17:40:20 -08:00
2025-02-10 04:21:31 +00:00
2024-09-12 16:01:23 +01:00
2024-12-16 04:36:57 +01:00
2025-02-11 13:39:20 -08:00
2025-02-10 17:32:55 -08:00
2024-09-19 18:20:22 -07:00
2024-09-19 18:20:21 -07:00
2024-11-18 17:43:54 +01:00
2025-02-12 14:45:38 -08:00
2024-09-24 23:58:21 -07:00
2024-11-08 14:56:55 +01:00
2025-02-09 00:42:55 -08:00
2025-02-11 13:39:20 -08:00
2025-02-10 17:22:16 -08:00