| author | |
| committer | |
| log | bf09dd87b6bde0c7af6b9415661be07b250afa27 |
| tree | afad2787cdff815028e0a106fea6d053a01de92c |
| parent | f7ee3b4ca5339791b08d20568270908d5e71e7ea |
It incorrectly did not process the death of its operand.1 files changed, 1 insertions(+), 1 deletions(-)
src/codegen.zig+1-1| ... | ... | @@ -3404,7 +3404,7 @@ fn Function(comptime arch: std.Target.Cpu.Arch) type { |
| 3404 | 3404 | fn airBr(self: *Self, inst: Air.Inst.Index) !void { |
| 3405 | 3405 | const branch = self.air.instructions.items(.data)[inst].br; |
| 3406 | 3406 | try self.br(branch.block_inst, branch.operand); |
| 3407 | return self.finishAirBookkeeping(); | |
| 3407 | return self.finishAir(inst, .dead, .{ branch.operand, .none, .none }); | |
| 3408 | 3408 | } |
| 3409 | 3409 | |
| 3410 | 3410 | fn airBoolOp(self: *Self, inst: Air.Inst.Index) !void { |