| ... | ... | @@ -663,7 +663,6 @@ pub const DeclState = struct { |
| 663 | 663 | switch (loc) { |
| 664 | 664 | .register => |reg| { |
| 665 | 665 | try dbg_info.ensureUnusedCapacity(4); |
| 666 | | dbg_info.appendAssumeCapacity(@intFromEnum(AbbrevKind.parameter)); |
| 667 | 666 | // DW.AT.location, DW.FORM.exprloc |
| 668 | 667 | var expr_len = std.io.countingWriter(std.io.null_writer); |
| 669 | 668 | if (reg < 32) { |
| ... | ... | @@ -683,7 +682,6 @@ pub const DeclState = struct { |
| 683 | 682 | |
| 684 | 683 | .stack => |info| { |
| 685 | 684 | try dbg_info.ensureUnusedCapacity(9); |
| 686 | | dbg_info.appendAssumeCapacity(@intFromEnum(AbbrevKind.parameter)); |
| 687 | 685 | // DW.AT.location, DW.FORM.exprloc |
| 688 | 686 | var expr_len = std.io.countingWriter(std.io.null_writer); |
| 689 | 687 | if (info.fp_register < 32) { |