| ... | @@ -791,7 +791,11 @@ const Writer = struct { | ... | @@ -791,7 +791,11 @@ const Writer = struct { |
| 791 | | 791 | |
| 792 | try w.writeOperand(s, inst, 0, pl_op.operand); | 792 | try w.writeOperand(s, inst, 0, pl_op.operand); |
| 793 | if (w.skip_body) return s.writeAll(", ..."); | 793 | if (w.skip_body) return s.writeAll(", ..."); |
| 794 | try s.writeAll(", {\n"); | 794 | try s.writeAll(","); |
| | 795 | if (extra.data.branch_hints.true != .none) { |
| | 796 | try s.print(" {s}", .{@tagName(extra.data.branch_hints.true)}); |
| | 797 | } |
| | 798 | try s.writeAll(" {\n"); |
| 795 | const old_indent = w.indent; | 799 | const old_indent = w.indent; |
| 796 | w.indent += 2; | 800 | w.indent += 2; |
| 797 | | 801 | |
| ... | @@ -806,7 +810,11 @@ const Writer = struct { | ... | @@ -806,7 +810,11 @@ const Writer = struct { |
| 806 | | 810 | |
| 807 | try w.writeBody(s, then_body); | 811 | try w.writeBody(s, then_body); |
| 808 | try s.writeByteNTimes(' ', old_indent); | 812 | try s.writeByteNTimes(' ', old_indent); |
| 809 | try s.writeAll("}, {\n"); | 813 | try s.writeAll("},"); |
| | 814 | if (extra.data.branch_hints.false != .none) { |
| | 815 | try s.print(" {s}", .{@tagName(extra.data.branch_hints.false)}); |
| | 816 | } |
| | 817 | try s.writeAll(" {\n"); |
| 810 | | 818 | |
| 811 | if (liveness_condbr.else_deaths.len != 0) { | 819 | if (liveness_condbr.else_deaths.len != 0) { |
| 812 | try s.writeByteNTimes(' ', w.indent); | 820 | try s.writeByteNTimes(' ', w.indent); |