diff options
| author | Veikka Tuominen <git@vexu.eu> | 2022-11-16 12:56:51 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-16 12:56:51 +0200 |
| commit | eed82ca287afb04261c94458efd624758bbc6669 (patch) | |
| tree | 51b15dded9d30fcfd3ba413e3ae0a53b4c2bd8e5 /src/Compilation.zig | |
| parent | a93fa29d8f808da58371a58f0a7b8ecd462584b3 (diff) | |
| parent | 28cbe5e92a36c81177dbcd2f33fc792468c08304 (diff) | |
| download | zig-eed82ca287afb04261c94458efd624758bbc6669.tar.gz zig-eed82ca287afb04261c94458efd624758bbc6669.zip | |
Merge pull request #13558 from Vexu/stage2-fixes
Stage2 bug fixes to get third party projects building
Diffstat (limited to 'src/Compilation.zig')
| -rw-r--r-- | src/Compilation.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Compilation.zig b/src/Compilation.zig index 35be4e86cf..73db9f5e97 100644 --- a/src/Compilation.zig +++ b/src/Compilation.zig @@ -2361,7 +2361,7 @@ pub fn update(comp: *Compilation) !void { // The `test_functions` decl has been intentionally postponed until now, // at which point we must populate it with the list of test functions that // have been discovered and not filtered out. - try module.populateTestFunctions(); + try module.populateTestFunctions(main_progress_node); } // Process the deletion set. We use a while loop here because the |
