motiejus/zig

fork of https://codeberg.org/ziglang/zig
git clone https://git.jakstys.lt/motiejus/zig.git
Log | Tree | Refs | README | LICENSE

commit 40ef796278bd5ba405099609e03bdeacab7d3154 (tree)
parent f894ec264b3e2af7e0f66a1ea76b4d06ac6c5e3a
Author: Jacob Young <jacobly0@users.noreply.github.com>
Date:   Tue,  2 May 2023 02:14:29 -0400

x86_64: fix todo message typo

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

diff --git a/src/arch/x86_64/CodeGen.zig b/src/arch/x86_64/CodeGen.zig @@ -9008,7 +9008,7 @@ fn airUnionInit(self: *Self, inst: Air.Inst.Index) !void { const ty_pl = self.air.instructions.items(.data)[inst].ty_pl; const extra = self.air.extraData(Air.UnionInit, ty_pl.payload).data; _ = extra; - return self.fail("TODO implement airAggregateInit for x86_64", .{}); + return self.fail("TODO implement airUnionInit for x86_64", .{}); //return self.finishAir(inst, result, .{ extra.init, .none, .none }); }