zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 62a0fbdaef575c857a7fa5f911447dd7275c9f22 (tree)
parent af40bce08adf232c9f6b9016810a24f7d0260399
Author: kcbanner <kcbanner@gmail.com>
Date:   Sun,  1 Oct 2023 12:08:02 -0400

air_print: fix panic when printing .abs

Diffstat:
Msrc/print_air.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/print_air.zig b/src/print_air.zig @@ -188,7 +188,6 @@ const Writer = struct { .log, .log2, .log10, - .abs, .floor, .ceil, .round, @@ -253,6 +252,7 @@ const Writer = struct { .popcount, .byte_swap, .bit_reverse, + .abs, .error_set_has_value, .addrspace_cast, .c_va_arg,