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