stage2 codegen: Fix silent bug in reuseOperand

This commit is contained in:
joachimschmidt557 2021-04-17 19:42:54 +02:00 committed by Andrew Kelley
parent 4081e0a475
commit fbda9991f4

View file

@ -1247,7 +1247,6 @@ fn Function(comptime arch: std.Target.Cpu.Arch) type {
}, },
.stack_offset => |off| { .stack_offset => |off| {
log.debug("reusing stack offset {} => {*}", .{ off, inst }); log.debug("reusing stack offset {} => {*}", .{ off, inst });
return true;
}, },
else => return false, else => return false,
} }