authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-26 12:07:49-07:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2024-05-27 20:56:48-07:00
loge8201734677ffcbe45dac12f2439f2de8e38710d
tree87f92279a7a5f935ce7c0c561e7a91968c04f2fb
parente2e61f329682c88e0a487e049245d865d2df9239

Compilation: fix sub-compilations given wrong progress node


1 files changed, 1 insertions(+), 1 deletions(-)

src/Compilation.zig+1-1
...@@ -5968,7 +5968,7 @@ pub fn updateSubCompilation(...@@ -5968,7 +5968,7 @@ pub fn updateSubCompilation(
5968 const sub_node = prog_node.start(@tagName(misc_task), 0);5968 const sub_node = prog_node.start(@tagName(misc_task), 0);
5969 defer sub_node.end();5969 defer sub_node.end();
59705970
5971 try sub_comp.update(prog_node);5971 try sub_comp.update(sub_node);
5972 }5972 }
59735973
5974 // Look for compilation errors in this sub compilation5974 // Look for compilation errors in this sub compilation