From 93c6e31cf174c61e1c2e7c0bf53d9a09b3d91734 Mon Sep 17 00:00:00 2001 From: Martin Wickham Date: Wed, 1 Sep 2021 16:32:37 -0500 Subject: [PATCH] Fix unmatched close brace in zir dump --- src/Zir.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Zir.zig b/src/Zir.zig index 329dbcef51..a3c0d5d3a8 100644 --- a/src/Zir.zig +++ b/src/Zir.zig @@ -3424,7 +3424,7 @@ const Writer = struct { try self.writeBody(stream, body); self.indent -= 2; try stream.writeByteNTimes(' ', self.indent); - try stream.writeAll(") "); + try stream.writeAll("}) "); try self.writeSrc(stream, inst_data.src()); }