| ... | @@ -2217,6 +2217,7 @@ const Writer = struct { | ... | @@ -2217,6 +2217,7 @@ const Writer = struct { |
| 2217 | | 2217 | |
| 2218 | fn writeUnreachable(self: *Writer, stream: anytype, inst: Zir.Inst.Index) !void { | 2218 | fn writeUnreachable(self: *Writer, stream: anytype, inst: Zir.Inst.Index) !void { |
| 2219 | const inst_data = self.code.instructions.items(.data)[inst].@"unreachable"; | 2219 | const inst_data = self.code.instructions.items(.data)[inst].@"unreachable"; |
| | 2220 | try stream.writeAll(") "); |
| 2220 | try self.writeSrc(stream, inst_data.src()); | 2221 | try self.writeSrc(stream, inst_data.src()); |
| 2221 | } | 2222 | } |
| 2222 | | 2223 | |