| ... | ... | @@ -9718,8 +9718,7 @@ pub fn print(self: *Builder, w: *Writer) (Writer.Error || Allocator.Error)!void |
| 9718 | 9718 | metadata_formatter.need_comma = true; |
| 9719 | 9719 | defer metadata_formatter.need_comma = undefined; |
| 9720 | 9720 | try w.print( |
| 9721 | | \\{f} ={f}{f}{f}{f}{f}{f}{f}{f} {s} {f}{f}{f}{f} |
| 9722 | | \\ |
| 9721 | \\{f} ={f}{f}{f}{f}{f}{f}{f}{f} {s} {f}{f} |
| 9723 | 9722 | , .{ |
| 9724 | 9723 | variable.global.fmt(self), |
| 9725 | 9724 | Linkage.fmtOptional( |
| ... | ... | @@ -9735,6 +9734,14 @@ pub fn print(self: *Builder, w: *Writer) (Writer.Error || Allocator.Error)!void |
| 9735 | 9734 | @tagName(variable.mutability), |
| 9736 | 9735 | global.type.fmt(self, .percent), |
| 9737 | 9736 | variable.init.fmt(self, .{ .space = true }), |
| 9737 | }); |
| 9738 | if (variable.section != .none) { |
| 9739 | try w.print(", section {f}", .{variable.section.fmtQ(self)}); |
| 9740 | } |
| 9741 | try w.print( |
| 9742 | \\{f}{f} |
| 9743 | \\ |
| 9744 | , .{ |
| 9738 | 9745 | variable.alignment.fmt(", "), |
| 9739 | 9746 | try metadata_formatter.fmt("!dbg ", global.dbg, null), |
| 9740 | 9747 | }); |
| ... | ... | @@ -9828,6 +9835,9 @@ pub fn print(self: *Builder, w: *Writer) (Writer.Error || Allocator.Error)!void |
| 9828 | 9835 | { |
| 9829 | 9836 | metadata_formatter.need_comma = false; |
| 9830 | 9837 | defer metadata_formatter.need_comma = undefined; |
| 9838 | if (function.section != .none) { |
| 9839 | try w.print(" section {f}", .{function.section.fmtQ(self)}); |
| 9840 | } |
| 9831 | 9841 | try w.print("{f}{f}", .{ |
| 9832 | 9842 | function.alignment.fmt(" "), |
| 9833 | 9843 | try metadata_formatter.fmt(" !dbg ", global.dbg, null), |