aboutsummaryrefslogtreecommitdiff
path: root/src/Compilation.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2021-05-17 11:33:21 -0700
committerAndrew Kelley <andrew@ziglang.org>2021-05-17 11:33:21 -0700
commitd83983527323201c44f90a2f57ff58c746116e11 (patch)
tree3d021b9e778543056b34cf4f5fc8274abfea7885 /src/Compilation.zig
parent751bb12a9612c092541a63db72eb9ecc5eb1c4bd (diff)
downloadzig-d83983527323201c44f90a2f57ff58c746116e11.tar.gz
zig-d83983527323201c44f90a2f57ff58c746116e11.zip
stage2: add some debug logs for when link functions are called
Diffstat (limited to 'src/Compilation.zig')
-rw-r--r--src/Compilation.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig
index 0f1cfd13c6..e792a9e6b6 100644
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -1944,9 +1944,6 @@ pub fn performAllTheWork(self: *Compilation) error{ TimerUnsupported, OutOfMemor
}
}
- log.debug("calling updateDecl on '{s}', type={}", .{
- decl.name, decl.ty,
- });
assert(decl.ty.hasCodeGenBits());
self.bin_file.updateDecl(module, decl) catch |err| switch (err) {