zig

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

commit 51673bcb315d837ee0fe80dc50571c2c07d80a2c (tree)
parent 38703dc9c2dccc43c77ec8dcfe0df936cced9d7a
Author: Travis Staloch <twostepted@gmail.com>
Date:   Wed, 22 Sep 2021 00:14:08 -0700

get build passing again after rebase

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

diff --git a/src/codegen/c.zig b/src/codegen/c.zig @@ -1334,7 +1334,7 @@ fn airSatOp( // if it's an unsigned int with non-arbitrary bit size then we can just add if (bits > 64) { - return f.fail("TODO: C backend: airSatOp for large integers", .{}); + return o.dg.fail("TODO: C backend: airSatOp for large integers", .{}); } var min_buf: [80]u8 = undefined;