aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-08-05 23:32:42 -0700
committerGitHub <noreply@github.com>2021-08-05 23:32:42 -0700
commitea7bdeb67d474526732b117992971603e4065f98 (patch)
tree5dcd7d8c1cdd311cb40505d986c8fbceab52dfc9 /src/Compilation.zig
parent9fd3aeb8088cd9a3b0744d5f508ca256a2bbf19f (diff)
parent7e9b23e6dce4d87615acd635f3731731a8601d39 (diff)
downloadzig-ea7bdeb67d474526732b117992971603e4065f98.tar.gz
zig-ea7bdeb67d474526732b117992971603e4065f98.zip
Merge pull request #9517 from ziglang/generic-functions
stage2 generic functions
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 33112ddb1b..4e9d94c6a4 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -2116,7 +2116,7 @@ pub fn performAllTheWork(self: *Compilation) error{ TimerUnsupported, OutOfMemor
if (builtin.mode == .Debug and self.verbose_air) {
std.debug.print("# Begin Function AIR: {s}:\n", .{decl.name});
@import("print_air.zig").dump(gpa, air, decl.namespace.file_scope.zir, liveness);
- std.debug.print("# End Function AIR: {s}:\n", .{decl.name});
+ std.debug.print("# End Function AIR: {s}\n\n", .{decl.name});
}
self.bin_file.updateFunc(module, func, air, liveness) catch |err| switch (err) {